View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chris Chris is offline
external usenet poster
 
Posts: 244
Default Select Cells with VBA

Use

Selection.Resize(X).Select Where x is the 'Total' number of rows you want the resize to b

----- Sam Fowler wrote: ----

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).Selec

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 appreciate

Thanks

Sa