You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Is there any way to delete all comments at one time from a WORD 2000 document?
Greg
unread,
Sep 1, 2004, 2:34:55 PM9/1/04
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
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
>-----Original Message----- >Is there any way to delete all comments at one time from >a WORD 2000 document?
>. >
Klaus Linke
unread,
Sep 2, 2004, 6:59:32 AM9/2/04
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
"Bruce" wrote: > Is there any way to delete all comments at one > time from a WORD 2000 document?
Hi Bruce,
You can also use "Find/Replace": Replace all ^a (= comment/annotation markers) with nothing.