Thread: [Solved] Balloon commentaries
View Single Post
 
Old 03-25-2012, 05:48 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2010 32bit
Moderator
 
Join Date: Aug 2011
Posts: 4,001
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

Maybe I misunderstood your question. To change the formatting (such as font and size) of the text, changing the defaults is the only way I know.

You can change the initials via a macro:

Code:
Sub ChangeCommentInitials()
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Initial = "M"   'or whichever letter you want
Next c
End Sub
You can't change the actual comment numbers, though, if that's what you are asking.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote