Open doc showing 'final' format?

K

keith brickey

Can someone tell me how to write a macro that will force a document to open
displaying its 'final' format instead of 'final showing markup," which seems
to be the default?

Thanks,

Keith
 
S

Steve Lang

Hi Keith,

This may get you on your way:

With ActiveWindow.View
.ShowRevisionsAndComments = False
.ShowFormatChanges = False
End With

Note that the settings for viewing the document are specific to the
computer, not the document.
 
Top