A family of Microsoft word processing software products for creating web, email, and print documents.
One option could be running the following macro which actually inserts comment text in line with text. Ensure that you do not save the document after you have run the macro, though.
Sub InsertCommentTextInline()
Dim c As Comment
For Each c In ActiveDocument.Comments
Set myrange = c.Reference.Duplicate
With myrange
.InsertAfter "["
.InsertAfter c.Range.Text
.InsertAfter "]"
End With
With myrange.Font
.Bold = True 'Make comment text stand out
End With
Next c
End Sub
For installation instructions, see http://www.gmayor.com/installing_macro.htm.