Thread: [Solved] Comments in Word 2010
View Single Post
 
Old 08-12-2013, 10:08 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 4,001
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

You can use the following macro:

Code:
Sub InsertCommentsInTextBody()
Dim c As Comment
For Each c In ActiveDocument.Content.Comments
c.Reference.InsertAfter "[" & c.Author & ", " _
& c.Date & ", " & c.Range.Text & "]"
Next c
End Sub
It inserts the author, date, and text of each comment immediately following the comment reference in the text. Save the document, run the macro, print the document, and then close without saving changes. If you do choose to save after printing, the inserted comments will be saved too (which you may or may not want).

For assistance with installation, see http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote