View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Trevor Shuttleworth Trevor Shuttleworth is offline
external usenet poster
 
Posts: 1,089
Default Select one cell below active cell

If you really must select the cell:

Activecell.Offset(1,0).Select

Regards

Trevor


"Jason" wrote in message
...
Hopefully this is an easy one...

How can I have a cell or cells selected below the currently active cell
without naming the actual coordinates? I am trying to select the first
blank
cell in a column in order to paste added data to a spreadsheet.

Thanks for the help!