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 macro to move cursor

Bob

Range("A5").End(xlDown).Offset(1,0).Select

Regards

Trevor


"Bob S" wrote in message
...
I need a macro that will move the cursor to the first
blank cell in column A greater than A5. I want to put it
in the "open" procedure for the worksheet to prevent the
need to scroll down to it manually

Thanks Bob