Thread: [Solved] comment font size
View Single Post
 
Old 07-03-2013, 01:37 AM
Catalin.B Catalin.B is offline Windows Vista Office 2010 32bit
Expert
 
Join Date: May 2011
Location: Iaşi, Romānia
Posts: 386
Catalin.B is on a distinguished road
Default

You must run a macro to do this, there are several formats you can change in a comment's font:
Code:
Sub ChangeCommentTextFormat()
    For Each Coment In ActiveSheet.Comments
        With Coment.Shape.TextFrame.Characters.Font
            .Name = "Arial Bold" '"Times New Roman"
            .Size = 11
            .Bold = False
            .ColorIndex = 0
        End With
    Next Coment
End Sub
Reply With Quote