Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Range("J:J"), Target) Is Nothing Then
Exit Sub
End If
Cells(Target.Row + 1, 1).Select
End Sub
After an entry is made in column 10, we move back to column 1 the next row
down.
Make sure your Tools>Options>Edit "move selection after enter" is set for
"down".
Assume you start in A1.
Tab your way across to column J.
When leaving column J hit the ENTER key to go back to A2.
Gord Dibben MS Excel MVP
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.