Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Delete Comments

0 views
Skip to first unread message

Bruce

unread,
Sep 1, 2004, 1:56:07 PM9/1/04
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
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
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.

Regards,
Klaus


0 new messages