How do I export a list of markup comments to a word document?

  • Thread starter Thread starter Guest
  • Start date Start date
If you run a macro containing the following code when the document with the
comments is the active document, it will create a new document into which it
will insert each comment.

Dim source As Document, target As Document, acomment As Comment
Set source = ActiveDocument
Set target = Documents.Add
For Each acomment In source.Comments
target.Range.InsertAfter acomment.Range.Text & vbCr
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
 
Back
Top