View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Sam Fowler[_2_] Sam Fowler[_2_] is offline
external usenet poster
 
Posts: 8
Default Select Cells with VBA

Hi:

Can anyone tell me if I can use VBA to select a range of
cells, with the Active Cell being an unknown cell in
column A.

I am using the following:

Sheets("INV").Cells(65536, 1).End(xlUp).Offset(1,
0).Select

to find the last cell and select the cell below. At that
point, I need to select the active cell and several cells
below it in the same row.


Any help appreciated

Thanks,

Sam