View Single Post
 
Old 04-15-2014, 05:39 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Well you have to decide whether you want the tracking to show. Your code simply retains whatever the existing setting is and can therefore be reduced to one line; merely turning on track changes doesn't change whether they're displayed. If, however, you want to turn on track changes without displaying them, you need something like:
Code:
Sub Demo()
ActiveDocument.TrackRevisions = True
ActiveDocument.ShowRevisions = False
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote