Hi, hb316,
maybe try it like this
Dim lngRow As Long
lngRow = ActiveCell.Row
Application.Goto reference:=Range("table1[location]").Cells(lngRow - 1, 1)
Offset(ActiveCell.Row, 0).Select
won´t take you to the right (Columns) but down (Rows). So you should not look for the row but rather the column and add 15 to that.
Dim lngRow As Long
Dim lngCol As Long
With ActiveCell
lngRow = .Row
lngCol = .Column
End With
Application.Goto reference:=Range("table1[location]").Cells(lngRow - 1, lngCol).Offset(0, 15)
Ciao,
Holger
Bookmarks