Move to Next Row

  • Thread starter Thread starter JohnV
  • Start date Start date
J

JohnV

How do you move to the next row from the current row?

Thanks,
JohnV
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top