I will like to get rid of a type of tracked changes. all FORMATT.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using the Track Changes option and want to 'Accept' all of the
"FORMATTED" type changes. How can I do it without having to do it one by one?
 
Luis said:
I am using the Track Changes option and want to 'Accept' all of the
"FORMATTED" type changes. How can I do it without having to do it
one by one?

Use this macro (see http://www.gmayor.com/installing_macro.htm if
necessary):

Sub AcceptFormattingChanges()
Dim myRev As Revision

For Each myRev In ActiveDocument.Revisions
If myRev.Type = wdRevisionProperty Then
myRev.Accept
End If
Next
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
If you are using Word 2002 or 2003, on the Show menu, deselect everything
except Formatting. Then on the Accept Change menu, choose Accept All Changes
Shown.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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

Back
Top