The easiest way to do this is to change to Page Layout view, then to use LargeScroll
to go down to which ever page you want.
ActiveWindow.View = xlPageLayoutView '<--- Changes view to "Page Layout"
ActiveWindow.LargeScroll 1 '<--- Scrolls down a full page 1 time
The '1' is the number of LargeScrolls you want to execute so in the example above, you'd go down 1 page from wherever you are. This will work from any page in Page Layout View.
Here's an example for if you wanted to go to page 2 but were unsure what page your code left you on. It uses cells(1,1)
to take you to the first cell of the worksheet which will be page 1.
Cells(1,1).Activate '<--- Takes you to first cell in your worksheet
ActiveWindow.View = xlPageLayoutView
ActiveWindow.LargeScroll 1
You can change the '1' to any number. Remember, it works like offset, so if you start in cell A1 and want to go to page 3, you would only scroll 2 times, not 3. The code would look like ActiveWindow.LargeScroll 2
because it's taking you down 2 from current page (2 + 1).