macro to change default track changes style

C

Clarke

Hi, I would like to change the default track changes view style. When I open
or create a new document, the track changes default view is "Final Showing
Markup." I would like to change that to "Final" so that I don't see the
track changes made.

I tried this code, but it didn't work when I went to open word for the first
time:

Public Sub AutoExec()
ActiveDocument.ShowRevisions = False
With ActiveWindow.View
RevisionsView = wdRevisionsViewFinal
End With
End Sub

thanks.
 
W

Word Heretic

G'day Clarke <[email protected]>,

The ActiveDocument doesn't exist properly at the time the AutoExec
runs. If you use an Application.Ontime command to delay the code it
will work better.

Steve Hudson - Word Heretic

steve from wordheretic.com (Email replies require payment)
Without prejudice


Clarke reckoned:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top