I'm trying to write a macro that will toggle the tracking without changing the current setting of the revision display. Why is the following code not working? It turns on the mark-up display when the tracking is turned on too. What I want to achieve is just to turn on tracking without disturbing the current revision display setting.
Code:
Sub ToggleTrackRevision()
Dim Display
Display = ActiveDocument.ShowRevisions
ActiveDocument.TrackRevisions = True
ActiveDocument.ShowRevisions = Display
End Sub