View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Nigel RS[_2_] Nigel RS[_2_] is offline
external usenet poster
 
Posts: 80
Default Move cursor down one cell

ActiveCell.Offset(1,0)

"sot" wrote:

I have recorded a macro to try and position my cursor in the next blank cell
at the bottom of a list.
I have the following to send the cursor to the bottom of the list :
Selection.End(xlDown).Select
but the next line is : Range("B4").Select which obviously continuously
selects B4. What is the command to just drop down one cell?