View Single Post
  #5   Report Post  
Doug Robbins
 
Posts: n/a
Default

If you want to print the comments in-line with the text, run the following
macro which will insert the text of the comment inside square brackets and
format it as italic to help make it stand out.

Dim acomment As Comment, comrange As Range
For Each acomment In ActiveDocument.Comments
Set comrange = acomment.Reference
comrange.InsertBefore " [" & acomment.Range & "] "
comrange.Font.Italic = True
Next acomment

--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP
"Bob" wrote in message
...
In the "Help" section of Word 2003 it says to go to "print view" and to
print
the "document showing markup". However, tracked changes print, but no
comments.

When I go to the "show" button and "balloons" and check off "only for
comments/formatting" then comments will show on-screen as balloons and
they
will also print as balloons.

I would like to print them at the end of the document with comment
numbers,
is there a way?