View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
sot sot is offline
external usenet poster
 
Posts: 19
Default Move cursor down one cell

Great. Many thanks
Sue

"Nigel RS" wrote:

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?