View Single Post
 
Old 04-10-2020, 08:50 PM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,980
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

Graham's code toggles both settings independently which means there are four possible entry combinations and four possible outcome combinations. If you wanted the macro to ensure only two possible outcomes you could modify his code along the lines of
Code:
Sub Toggle_Track_Changes_Final()
    With ActiveDocument.ActiveWindow.View
        .RevisionsView = wdRevisionsViewFinal
        .ShowRevisionsAndComments = .RevisionsView
    End With
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote