View Single Post
 
Old 11-27-2018, 05:39 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

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.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote