Thread: [Solved] Removing names from comments
View Single Post
 
Old 12-22-2015, 03:33 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

You could use a macro like:
Code:
Sub Demo()
Dim Cmnt As Comment
For Each Cmnt In ActiveDocument.Comments
  Cmnt.Author = ""
Next
End Sub
For PC macro installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm

Do note this will still leave the comment date/time stamp, which can't be removed. The only way around that would be to replace all the comments so they get the current date & time.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote