Print comments in the document Word 2000

L

Louis

In Word 2000 is it possible to print the comments (like Excel does with a
speech bubble next to the cell) in the document next to the place it was
inserted? I can print the documents alone but I would like to see them
together with the document.--
Louis
 
S

Stefan Blom

Word 2000 has no balloons for printing comments. What you can do is make use
of this simple macro to insert comment text within the body of the document:

Sub InsertCommentsAsText()
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Reference.InsertAfter "[" & c.Range.Text & "]"
Next c
End Sub

After you've inserted the comments, print the document, and then close
without saving.

For assistance with the macro, see http://www.gmayor.com/installing_macro.htm.
 

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