View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Showing Margin Mark-ups when all changes accepted - Word

After having made all of the necessary changes, run a macro containing the
following code:

With Options
.DeletedTextMark = wdDeletedTextMarkHidden
.InsertedTextMark = wdInsertedTextMarkNone
End With

It will not actually accept the changes, but will hide the deleted text and
not mark the inserted text in anyway. The line in the margin will however
still be retained.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Chrisarms" wrote in message
...
I am trying to accept all changes in a Word document, whilst retaining the
mark in the margin to show where the changes have occurred. Any ideas?
Thanks.