Move to Next Row

  • Thread starter Thread starter JohnV
  • Start date Start date
Look in the Excel help for offset

Sub test()
ActiveCell.Offset(1, 0).Select
End Sub

Or use this

Sub test2()
Cells(ActiveCell.Row + 1, ActiveCell.Column).Select
End Sub
 
Just being flippant since OP did not say very much about what was wanted.
Formula or vba. Just couldn't resist. I do flip out once in a while.
 
Back
Top