Revisions bars and track changes

  • Thread starter Thread starter shelley
  • Start date Start date
S

shelley

I need to turn off the tracking but maintain all revision
bars. Is there a way to do this? I have tried turning off
all reviewers, showing only the final, and everything else
I can think of. Is there a macro that will allow you to
keep only the revision bars without showing the mark-ups?
Any information is greatly appreciated.
 
Hi Shelley,

What version of Word.

If it's XP, you will need to run a macro containing the following code

Options.DeletedTextMark = wdDeletedTextMarkNone

to set the DeletedTextMark option

In prior and later versions of Word, that can be done through Tools>Options,
as can the settings for the other indications, but to set them by code as
well, use:

Options.InsertedTextMark = wdInsertedTextMarkNone
Options.RevisedLinesMark = wdRevisedLinesMarkLeftBorder

Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Back
Top