View Single Post
 
Old 05-29-2013, 11:40 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 4,003
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

For comments, changing the author name and initials is straightforward:

Code:
Sub ChangeCommentAuthorAndInitials()
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Author = "Bugs Bunny"
c.Initial = "BB"
Next c
End Sub
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote