Turning off revisions marks at beginning of macro and restoring themat its end

J

John Doue

I realized that the simplest way for me to solve the problem of
undesired revision marks during a macro was obvious, if not smart:
turning them off and on. Unfortunately, the recorder does not record the
action and I have no idea what code to run to get this done.

Your ideas will be greatly appreciated.

Regards
 
J

Jay Freedman

Hi John,

Do it this way:

ActiveDocument.TrackRevisions = False
' do your work here
ActiveDocument.TrackRevisions = True

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
 
J

John Doue

Jay said:
Hi John,

Do it this way:

ActiveDocument.TrackRevisions = False
' do your work here
ActiveDocument.TrackRevisions = True

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
Thanks Jay!
 
J

John Doue

Jay said:
Hi John,

Do it this way:

ActiveDocument.TrackRevisions = False
' do your work here
ActiveDocument.TrackRevisions = True

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
Thanks!
 

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