Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Printing Comments.

Printing Comments

Written by Allen Wyatt (last updated April 11, 2019)
This tip applies to Word 97, 2000, 2002, and 2003


5

If you use comments within your documents, Word allows you to print a comment list to use as a reference. To print a comment list, follow these steps if you are using Word 97 or Word 2000:

  1. Select Print from the File menu. Word displays the Print dialog box.
  2. Using the Print What drop-down list, select Comments.
  3. Click on OK.

Beginning with Word 2002, Microsoft significantly changed the way that Word handles document "markup." This change affected the way in which comments (which are considered part of document markup) are handled. If you are using Word 2002 or Word 2003, you can choose two different ways to print your comments. These options are among those you can choose in the Print What drop-down list:

  • Document Showing Markup. This option prints your document with the comments shown in-place, using balloons. This is essentially how you see the comments if you are viewing your document in Print Layout view.
  • List of Markup. This option produces a comments list, much like those produced in previous versions of Word.

Understanding that "markup" is a generic term that refers to any changes made in a document (if Track Changes is turned on), printing a List of Markup in Word 2002 and Word 2003 still may not give you what you want, if you want to print only a list of comments. Indeed, the markup list includes all markup, not just comments.

If you want to print just the comments without the other markup, there is no longer a way to do this in Word; that capability ceased with the advent of Word 2002. You can, however, create a macro that will print your comments. The traditional way of printing comments within a macro is to use this single line of code:

ActiveDocument.PrintOut Item:=wdPrintComments

If you use this code in Word 2002 or Word 2003, the result is the same as choosing List of Markup on the Print dialog box. A better approach is to gather all your comments and place them in a new document you can then print.

Sub PrintOnlyComments()
    Dim oThisDoc As Document
    Dim oThatDoc As Document
    Dim c As Comment
    Dim sTemp As String
    Dim iPage As Integer

    Set oThisDoc = ActiveDocument
    Set oThatDoc = Documents.Add

    Application.ScreenUpdating = False
    For Each c In oThisDoc.Comments
        'Find page number of comment
        oThisDoc.Select
        c.Reference.Select
        iPage = Selection.Information(wdActiveEndAdjustedPageNumber)

        'Put info in new document
        oThatDoc.Select
        Selection.EndKey Unit:=wdStory
        sTemp = "Page: " & iPage
        Selection.TypeText Text:=sTemp
        Selection.TypeParagraph
        sTemp = "[" & c.Initial & c.Index & "] " & c.Range
        Selection.TypeText Text:=sTemp
        Selection.TypeParagraph
    Next
    Application.ScreenUpdating = True
End Sub

This macro creates a new document, then steps through each comment in the original document and adds it to the new document. There are three properties that are used in putting the text into the new document: the Initial, Index, and Range properties. The Initial property is the initials of the comment's author, the Index property is the number of the comment within the document, and the Range property is the text of the comment itself.

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 (1046) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Printing Comments.

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

Synchronous Scrolling with More than Two Windows

Synchronous scrolling of different windows can be very helpful with some worksheets. Excel allows you to synchronize the ...

Discover More

Using Header Information as the Filename

Save a document for the first time, and Word helpfully suggests a filename you can use or change. If you want this ...

Discover More

Creating Worksheets with a Macro

Using a macro to add worksheets to your workbook is easy. This tip provides two different methods you can use.

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (menu)

Pop-up Comments

Want to see what a comment says just by moving the mouse? Here's how.

Discover More

Comments in Text Boxes

If you use text boxes in your documents, you may sometime want to place a comment in the text box, the same as you can do ...

Discover More

Copying, Moving, and Deleting Comments

Comments are often added to documents to aid in their development. You can use regular editing techniques to copy, move, ...

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 2 + 8?

2016-04-04 13:52:43

Bob

Great love it.

Is there a way to add "deletions" & "insertions" ?

That way we could archive in a separate document all the changes.

Thanks


2015-04-26 18:01:42

Moe

Hi,

I have a few pages of comments in a large document that I want to print. How do I print these pages with the comments, without having the 'shaded' balloon aspect print on the pages without comments?

Thanks


2014-12-17 15:59:27

Rick

This is awesome.


2014-09-27 20:26:34

John Polasek

I had not noticed this W97 feature "print what", so I tried it on auto text entries, of which I have about 50.
All I got was a duplicate list:

Last printed last printed
last saved by, last saved by
love, love
personal, personal
all the way down to
yours truly, yours truly
Not one word from my glossary appeared!


2014-09-26 11:28:17

BJ

Thanks! I created a macro to copy all the comments into a new document. Works exactly as you describe. Is there a way to include the highlighted "source" content as well? That way, readers know the reference as well.


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon 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.