Ok, I just solved my own problem. I'm using this in the code for each worksheet.
This jumps to the next column when the cell below my last data entry is selected.
ie.: I enter data in B49 and then hit enter which selects B50. When B50 is selected, it jumps to the top of the next column.
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = "$B$50" Then Cells(10, 3).Select
If Target.Address = "$C$50" Then Cells(10, 4).Select
If Target.Address = "$D$50" Then Cells(10, 5).Select
If Target.Address = "$E$50" Then Cells(10, 6).Select
If Target.Address = "$F$50" Then Cells(10, 7).Select
If Target.Address = "$G$50" Then Cells(10, 8).Select
If Target.Address = "$H$50" Then Cells(10, 9).Select
If Target.Address = "$I$50" Then Cells(10, 10).Select
If Target.Address = "$J$50" Then Cells(10, 11).Select
If Target.Address = "$K$50" Then Cells(10, 12).Select
If Target.Address = "$L$50" Then Cells(10, 13).Select
End Sub
It does what I'm looking for.
Thanks,
Jason
Bookmarks