View Single Post
  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Comicmass Comicmass is offline
external usenet poster
 
Posts: 3
Default Sending Comments without the Reviewer's Name

What exactly do comments do and how do I use them?
--
Comicmass, Greatest Beatle Lover Ever



"garfield-n-odie" wrote:

Hi, Louann. You can delete the comment authors' names by running the
following macro:

Sub ZapCommentInitials()
Dim oCmt As Comment
For Each oCmt In ActiveDocument.Comments
oCmt.Initial = ""
oCmt.Author = ""
Next oCmt
End Sub

If you don't know how to install a macro, see
http://www.gmayor.com/installing_macro.htm .


"Louann" wrote:

When using track changes in Word 2002, how do I send a marked up manuscript
that retains the comments without showing the name of the reviewer? I would
like to protect the reviewer's anonymity but send the comments to the author.