B Bruce Sep 1, 2004 #1 Is there any way to delete all comments at one time from a WORD 2000 document?
G Greg Sep 1, 2004 #2 This macro works: Sub DeleteAllComments() Dim lngIndex As Long With ActiveDocument.Comments For lngIndex = 1 To .Count .Item(1).Delete Next End With End Sub
This macro works: Sub DeleteAllComments() Dim lngIndex As Long With ActiveDocument.Comments For lngIndex = 1 To .Count .Item(1).Delete Next End With End Sub
K Klaus Linke Sep 2, 2004 #3 Bruce said: Is there any way to delete all comments at one time from a WORD 2000 document? Click to expand... Hi Bruce, You can also use "Find/Replace": Replace all ^a (= comment/annotation markers) with nothing. Regards, Klaus
Bruce said: Is there any way to delete all comments at one time from a WORD 2000 document? Click to expand... Hi Bruce, You can also use "Find/Replace": Replace all ^a (= comment/annotation markers) with nothing. Regards, Klaus