How can I change EXISTING names/initials in comments in a documen.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In and existing document with comments from single or multiple reviewers, I
want to strip the names of the reviewers out of the comments and replace with
a generic title of "instructor."

I use Word 2003. But I work with other earlier versions as well.

THANKS!
 
You can do it with a macro:

Sub ZapCommentInitials()
Dim oCmt As Comment

For Each oCmt In ActiveDocument.Comments
oCmt.Initial = ""
oCmt.Author = "Instructor"
Next oCmt
End Sub

If you need instructions on how to install a macro, see
http://www.gmayor.com/installing_macro.htm .
 

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

Back
Top