Getting a Change and Comment Count by Author

Written by Allen Wyatt (last updated June 19, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021


1

Jackie uses Track Changes regularly in her department. She notes that it would be nice to be able to analyze a marked-up document to get a count of how many changes and how many comments were made by the various editors on the document.

Word does not provide that ability. You can, however, create a macro that may give you the information you desire. The following example steps through each revision in a document and accumulates the editor names and a count of each editor's changes.

Sub CountReviewers()
    Dim J As Integer
    Dim Cnt As Integer
    Dim sMsg As String
    Dim Authors(299) As String
    Dim aCount(299) As Long
    Dim aRev As Revision
    Dim bNew As Boolean

    Cnt = 0
    On Error GoTo RevNext

    For Each aRev In ActiveDocument.Revisions
        ' Check to see if this is a new author
        bNew = True
        For J = 1 To Cnt
            If aRev.Author = Authors(J) Then
                ' Already have author
                aCount(J) = aCount(J) + 1
                bNew = False
            End If
        Next J
        If bNew Then
            ' New author; add to list
            Cnt = Cnt + 1
            Authors(Cnt) = aRev.Author
            aCount(Cnt) = 1
        End If
RevNext:
    Next aRev

    ' Put together and display final report
    sMsg = ""
    For J = 1 To Cnt
        sMsg = sMsg & Authors(J) & " (" & Trim(Str(aCount(J))) & ")" & vbCrLf
    Next J
    sMsg = sMsg & "Total revisions:" & Str(ActiveDocument.Range.Revisions.Count)
    MsgBox sMsg
End Sub

There are a few things to remember when using a macro like this. First, it is hard-coded to handle up to 299 editors on the document. If you have more, just increase the number of elements by which the Authors() and aCount() arrays are dimensioned. Second, if your document is long and has a lot of edits, it can take a while for the macro to run. So, the longer and more heavily edited the document, the more patient you'll need to be.

Finally, it is possible that the macro may ingloriously crash with some documents. (Not all, but just some.) This seems to happen most often with documents that have a tracked change caused by an automatic field change. The error that is thrown by such a scenario cannot be trapped for some reason, as this problem seems to be rooted in either a VBA or Excel error.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13873) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Formatting All Headings At Once

If you need to apply a common formatting change to all the headings in your document, a quick way to do it is to use the ...

Discover More

Understanding Outlining in Word

Remember when you needed to create outlines for your writing when you were in school? Word includes outlining ...

Discover More

Word Freezes when Updating Styles

If you have problems with Word freezing at times, it can be very frustrating. Here are a couple of things you can check ...

Discover More

Do More in Less Time! An easy-to-understand guide to the more advanced features available in the Microsoft 365 version of Word. Enhance the quality of your documents and boost productivity in any field with this in-depth resource. Complete your Word-related tasks more efficiently as you unlock lesser-known tools and learn to quickly access the features you need. Check out Microsoft 365 Word For Professionals For Dummies today!

More WordTips (ribbon)

Hiding Formatting Changes in Track Changes

Word can easily (and handily) keep track of changes you make in your document. You may not want all your changes tracked, ...

Discover More

Making Sure Changes and Comments are Anonymous

When using Track Changes, Word normally notes the originator of a particular comment or change. This information can then ...

Discover More

Changing How Changes are Noted in Word

Do you want to modify how Word marks changes in your document? It's easy to do, if you know where to look.

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 9?

2021-07-26 11:57:55

Richard Curtis

In Word 365, the revieweing pane displays the number of revisions in the document. Show Markup > Specific People can be limited to one author to show the number of relevant changes. This would rapidly become tedious for 299 authors though (see article).


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.