View Single Post
  #7   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Show comments inline in text?

Thank you for the feedback. :-)

--
Stefan Blom
Microsoft Word MVP



"Fraser" wrote in message
...
Thank you Stefan,

I will try that on the next occasion when I have to extract the comments.
It
seems that Word can be made to do almost anything via macros. I appreciate
all of the helpful advice.

Cheers,
Fraser

"Stefan Blom" wrote:

You can use a macro such as the following:

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

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

Run the macro to insert the comment text. Make sure not to save the
document
unless you want to save the "inline" comments (but, of course, you can
print
it or Save As).

--
Stefan Blom
Microsoft Word MVP



"Fraser" wrote in message
...
Thank you Jay. I will do that in future. Unfortunately that won't help
with
the document I have already commented. Ah well ...

Thank you for the prompt and helpful suggestion.

Cheers,
Fraser


"Jay Freedman" wrote:

Fraser wrote:
Hello,

Is is possible to have comments displayed inline in the text? I have
seen how to display edits/changes inline but cannot figure out how
to
show the comments that way. Thank you in advance for any helpful
advice.

Fraser

Sorry, no. Word shows comments in balloons or in the Reviewing Pane,
but
not
inline.

If you know that's what you want, you could type all your comments as
tracked inserts. You can temporarily change your name in the User
Information section of the options dialog (for instance, add a
character
to
it), and then you can use the Tracked Changes option to display only
the
changes from that "author" to see inline "comments".

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup
so
all may benefit.