Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 47
Default With Sheets("Data_Assembly"

I am refining all the selects etc, so I am going to post
just pieces that I am having difficulty with in my
refining techniques.

Rather than this:

Sheets("Data_Assembly").select
Range("Workarea").select
ActiveCell.Resize(2).Value =
Range("Start_of_Report").Resize(2).Value
Range(ActiveCell, ActiveCell.End(xlDown)).Copy
Range("WorkArea").CurrentRegion.Clear

I tried it this way:

With Sheets("Data_Assembly").Range("Workarea")
ActiveCell.Resize(2).Value =
Range("Start_of_Report").Resize(2).Value
Range(ActiveCell, ActiveCell.End(xlDown)).Copy
Range("WorkArea").CurrentRegion.Clear
End With



The problem with this way, is that when the Activecell
command is called, it doesn't work, because the
sheet "Import" was where the last active cell was. So,
neither Activecell.whatever or cells(whatever) works in
this case. It puts those resized values in the active cell
in another worksheet this way.

Maybe the With method is not the right way to go here.
Please look at this from that perspective and tell me how
to do the resize for 2 cells for which the resize from and
the resize to ranges are both on the sheet "Data_Assembly".

Thanks,


Bruce

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default With Sheets("Data_Assembly"

You need to define what the activecell would be when you run the macro.
Then refer to that cell specifically. Assume the Active cell would be B2
on Data_Assembly

With Sheets("Data_Assembly")
.Range("B2").Resize(2).Value =
.Range("Start_of_Report").Resize(2).Value
.Range(.Range("B2"), .Range("B2").End(xlDown)).Copy
.Range("Workarea").CurrentRegion.Clear
End With

Assume that both Start_of_Report and Workarea are on Data_Assembly

--
Regards,
Tom Ogilvy


"Bruce Roberson" wrote in message
...
I am refining all the selects etc, so I am going to post
just pieces that I am having difficulty with in my
refining techniques.

Rather than this:

Sheets("Data_Assembly").select
Range("Workarea").select
ActiveCell.Resize(2).Value =
Range("Start_of_Report").Resize(2).Value
Range(ActiveCell, ActiveCell.End(xlDown)).Copy
Range("WorkArea").CurrentRegion.Clear

I tried it this way:

With Sheets("Data_Assembly").Range("Workarea")
ActiveCell.Resize(2).Value =
Range("Start_of_Report").Resize(2).Value
Range(ActiveCell, ActiveCell.End(xlDown)).Copy
Range("WorkArea").CurrentRegion.Clear
End With



The problem with this way, is that when the Activecell
command is called, it doesn't work, because the
sheet "Import" was where the last active cell was. So,
neither Activecell.whatever or cells(whatever) works in
this case. It puts those resized values in the active cell
in another worksheet this way.

Maybe the With method is not the right way to go here.
Please look at this from that perspective and tell me how
to do the resize for 2 cells for which the resize from and
the resize to ranges are both on the sheet "Data_Assembly".

Thanks,


Bruce



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
"Count" and "List" functions across sheets Meg Excel Worksheet Functions 0 October 14th 08 02:11 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
change "true" and "false" to "availble" and "out of stock" inthestands Excel Worksheet Functions 2 July 19th 07 07:05 PM
HELP on "left","right","find","len","substitute" functions serene83 Excel Discussion (Misc queries) 5 June 27th 06 02:23 AM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM


All times are GMT +1. The time now is 03:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"