Unable to delete comments

G

Guest

Hi,
I have a word doc which has had comments added by 2 different users. I
cannot use the standard Delete Comment button to remove the comments of 1 of
the users.
Does anyone have any ideas what is happening here? I think it is written in
Word 2000.

many thanks
 
S

Suzanne S. Barnhill

Is it possible that that user protected the document for tracked changes? If
you're using Word 2002/2003, does the Delete All Comments in Document
command (on the Reject Change/Delete Comment menu on the Reviewing toolbar)
not affect these comments?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
G

Guest

I found this advice useful to get rid of all tracked changes and comments.
Create a new macro with this code:

Sub TC()
Dim oRev As Revision
Dim oCom As Comment
Dim i As Long
For Each oRev In ActiveDocument.Revisions
oRev.Accept
Next oRev
For i = ActiveDocument.Comments.Count To 1 Step -1
ActiveDocument.Comments(i).Delete
Next i

End Sub

After running the macro, you need to Accept All Changes in Document, which
will automatically get rid of any remaining comments you might see.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top