ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Comment Default Font Size (https://www.excelbanter.com/excel-programming/278280-comment-default-font-size.html)

John M[_3_]

Comment Default Font Size
 
Hello,

Does anyone know how I can change the default font size of
the comment feature in Excel? It currently deaults to
size 8, which is hard to read so I always manually change
it to 10. Any suggestions would be appreciated.

John

Debra Dalgleish[_2_]

Comment Default Font Size
 
You can change the font size of new comments by changing the settings in
your Control Panel. (Instructions for Windows XP)

1. Right-click on the desktop, and choose Properties
2. On the Appearance tab, click Advanced.
3. From the Item dropdown, choose Tooltip
4. Choose a font Size, click OK, click OK

Note -- this will also affect your Tooltips formatting

Or, you can use a macro to insert a comment with a specific font and format:
'======================================
Sub CommentAddOrEditTNR()
'adds TimesNewRoman comment or positions
'cursor at end of existing comment text
Dim cmt As Comment
Set cmt = ActiveCell.Comment
If cmt Is Nothing Then
ActiveCell.AddComment text:=""
Set cmt = ActiveCell.Comment
With cmt.Shape.TextFrame.Characters.Font
.Name = "Times New Roman"
.Size = 11
.Bold = False
.ColorIndex = 0
End With
End If
SendKeys "%ie~"
End Sub
'===========================

John M wrote:
Does anyone know how I can change the default font size of
the comment feature in Excel? It currently deaults to
size 8, which is hard to read so I always manually change
it to 10. Any suggestions would be appreciated.



--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html



All times are GMT +1. The time now is 09:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com