View Single Post
 
Old 05-16-2016, 01:04 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,137
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Easy enough with a macro e.g.
Code:
Sub ReplaceComments()
Dim oComment As Comment
    For Each oComment In ActiveDocument.Comments
        oComment.Scope.Font.Underline = wdUnderlineSingle
        oComment.Scope.Font.Bold = True
        'oComment.Range.Delete 'set the comment to no value
        oComment.DeleteRecursively 'optional
    Next oComment
lbl_Exit:
    Set oComment = Nothing
    Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote