View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] lafinca47@tiscali.co.uk is offline
external usenet poster
 
Posts: 11
Default Selecting 10 cells downwards

Hi,

I'm pretty sure that this is an easy topic but I have been looking all
over for a way to do this and cannot find it.

I am copying data from one spreadsheet to another and I asking the
Macro to find a certain title in the first spreadsheet and then select
and copy the following 10 cells down.

I currently have in:

Range(Selection, Selection.End(xlDown)).Select

but the problem is that there is a blank row in the range I'm trying to
copy and therefore each time I run this command it only goes down by
two cells instead of ten. And I'm unable to select a cell reference ie
("A1:A10").select as the infomation could be in different cells each
time I run the code.

Any advice would be much appreciated.

Thanks