View Single Post
 
Old 04-10-2020, 12:34 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,144
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

The following combines the two
Code:
Sub Toggle_Track_Changes_Final()
    With ActiveDocument.ActiveWindow.View
        .RevisionsView = wdRevisionsViewFinal
        .ShowRevisionsAndComments = Not .ShowRevisionsAndComments
    End With
End Sub
__________________
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