Reviewing Pane: count changes

A

Allan Editor

Every so often I spend a half-hour trying to figure this out, so far with no
luck.

In Word 2003:
I am an editor and often want to be able to specify the number of edits I
have made in a manuscript, often numbering in the thousands. I have found no
simple way of getting a copy of the material in the Reviewing Pane, other
than actually printing out a copy (which for long MSs would be hundreds of
pages just of Markup). I have in mind that if I could just get a copy of
that in text, I could count the number of times my name appears as Author.
I have tried copying the contents but it will only copy single items. Or I
could estimate the number of items if I could just get a copy of Reviewing
Pane in Print Preview. I tried to use Print To pdf, but that failed. Any
ideas? Thanks a lot!
 
D

Doug Robbins - Word MVP on news.microsoft.com

Run a macro containing the following code, replacing Me with you name as it
appears as the author of a revision

Dim arev As Revision
Dim i As Long
i = 0
For Each arev In ActiveDocument.Revisions
If arev.Author = "Me" Then
i = i + 1
End If
Next arev
MsgBox "Me has made " & i & "edits to the document."


--
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, originally posted via msnews.microsoft.com
 

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