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.
Written by Allen Wyatt (last updated April 11, 2019)
This tip applies to Word 97, 2000, 2002, and 2003
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:
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:
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:
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.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
Got a bunch of comments in your document? You can easily jump from one comment to the other by using the Object Browser, ...
Discover MoreUsing the comment capabilities of Word is a common occurrence when developing a document. What do you do, however, if the ...
Discover MoreComments are often added to documents to aid in their development. You can use regular editing techniques to copy, move, ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
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.
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments