View Single Post
 
Old 11-27-2018, 09:32 AM
sai19 sai19 is offline Windows 10 Office 2016
Novice
 
Join Date: Nov 2018
Posts: 7
sai19 is on a distinguished road
Smile

Quote:
Originally Posted by gmayor View Post
You could use a pair of macros attached to buttons on the QAT (Quick Access Toolbar) or keyboard shortcuts http://www.gmayor.com/installing_macro.htm



Code:
Sub Go_To_Next()
    Selection.GoTo What:=wdGoToPage, which:=wdGoToNext
End Sub

Sub Go_To_Previous()
    Selection.GoTo What:=wdGoToPage, which:=wdGoToPrevious
End Sub

or you could just click the Page icon at the bottom left of the ststus bar.
Thank you, I will try that out
Reply With Quote