View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey[_2_] Greg Maxey[_2_] is offline
external usenet poster
 
Posts: 668
Default Word 2007 - How to change the Initials of Existing Comments

Jeff,

You can apply a common color and initials to comments with a macro like
this:

Sub ScratchMaco()
Dim oCom As Comment
For Each oCom In ThisDocument.Comments
oCom.Author = "Common"
oCom.Initial = "Author"
Next oCom
End Sub

For help installing and using the macro see:
http://www.gmayor.com/installing_macro.htm


"Jeff Lowenstein" wrote in
message news
I have a document modified by many people with close to 80 comments. Is
there a way to change all the initials of all the comments to something
like
"Author" so I can give a clean copy to the client?