Finding Author of a Tracked Change

J

Jeremy

Hi,
I would like to be able to find particular tracked changes: those made by a
specific author. Is there a way of saying "find the next tracked change made
by author Dave" in vba?

Any help appreciated. Thanks

I would like to write a macro that finds a particular author's changes and
changes the colour of that author's text.
 
D

Doug Robbins - Word MVP

Dim arev As Revision
For Each arev In ActiveDocument.Revisions
If arev.Author = "[AuthorName]" Then
arev.Select
Exit Sub
End If
Next arev


--
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
 

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