Hello Garydaw,
You need to create a macro to scroll side to side and up and down. Here is an example that will put the cell you choose in the Top Left corner. You can change the Row and Column to match where you want to move the worksheet. This example puts cell AV15 in the top left corner.
Sub PositionWorksheet()
Dim C As Long, R As Long
Dim CellAddress As String
Dim Wks As Worksheet
CellAddress = "AV15"
Set Wks = ActiveSheet
With Wks.Range(CellAddress)
C = .Column
R = .Row
End With
With ActiveWindow
.ScrollColumn = C
.ScrollRow = R
End With
End Sub
You can place buttons on your worksheet then attach this macro to them. Just be sure to copy the macro, give it a different name, and change the address before assigning it to another button to position the worksheet.
Sincerely,
Leith Ross
Bookmarks