Link to home
Start Free TrialLog in
Avatar of TigerMan
TigerManFlag for Australia

asked on

Track Changes Word 2010

Hi,

I utterly despise track changes, have no use for it, have no desire to do anything with it, and wish it was simply not on my machine.

Option 1
The very best solution is to have it completely removed from my install.  Is this possible?  I receive countless documents all with this dumb-as-paint track changes xml and rubbish that I want removed.  Can Track Changes be completely removed and thus, when I receive a document that carries track changes tags with it, all I get is the print view content only.

Option 2
If that is not possible then can someone give me a macro that hides all tracked changes, comments, and other rubbish that comes directly from one of these documents in which the last editor used track changes?  The below just doesn't cut it and I am not familiar with macros in Word.  I need to open each document, run the macro, and for those changes to be saved.  when re-opening I don't want to see all that crap filling my monitor with useless meaningless content.

    With ActiveWindow.View
        .ShowRevisionsAndComments = False
        .RevisionsView = wdRevisionsViewFinal
    End With
Avatar of sAiyAnstAr
sAiyAnstAr
Flag of Australia image

Hi there,

If you edit your normal.dotm file by deslecting the "Track Changes" toolbar and then save the document, that should disable Track Changes from appearing for all your other documents.
Try putting the code in the ThisDocument module of the Normal project:
Private Sub Document_Open()
  With Application.ActiveWindow.View
        .ShowRevisionsAndComments = False
        .RevisionsView = wdRevisionsViewFinal
    End With
End Sub

Open in new window

Avatar of TigerMan

ASKER

I use sensible functional and operationally appropriate MS Word 2003 at home (where I am now).  I will have a look at the above at work (where I am compelled to you Word 2010 which is completely broken, dysfunctional, stuffed and made for idiots) on Monday :)
The below works, except that Comments are still showing.  Can you please give code to remove such things from view?

Private Sub Document_Open()
  With Application.ActiveWindow.View
        .ShowRevisionsAndComments = False
        .RevisionsView = wdRevisionsViewFinal
    End With
End Sub
ASKER CERTIFIED SOLUTION
Avatar of GrahamSkan
GrahamSkan
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Cool ... that is the one I was looking for.  Thanks.