Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to find out how to change the default format for comments, cause I
hate having to right-click/format every time. tks for all De |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
There is no way to change Excel's comment default font. A workaround is to
use a macro to create a new comment, for example: Sub NewComment() On Error Resume Next With ActiveCell.AddComment.Shape .TextFrame.Characters.Font.Name = "Terminal" .TextFrame.Characters.Font.Size = 9 .ScaleWidth 1.5, msoFalse .ScaleHeight 1.5, msoFalse .Visible = msoTrue .Select End With End Sub -- Jim "De" wrote in message ... |I want to find out how to change the default format for comments, cause I | hate having to right-click/format every time. | tks for all | De | |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Jim, you're awesome!!!! I've been trying to figure out how to change the
comment font size. Thanks for posting this work-around! "Jim Rech" wrote: There is no way to change Excel's comment default font. A workaround is to use a macro to create a new comment, for example: Sub NewComment() On Error Resume Next With ActiveCell.AddComment.Shape .TextFrame.Characters.Font.Name = "Terminal" .TextFrame.Characters.Font.Size = 9 .ScaleWidth 1.5, msoFalse .ScaleHeight 1.5, msoFalse .Visible = msoTrue .Select End With End Sub -- Jim "De" wrote in message ... |I want to find out how to change the default format for comments, cause I | hate having to right-click/format every time. | tks for all | De | |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comments Format Help | Excel Worksheet Functions | |||
Format multiple comments | Excel Discussion (Misc queries) | |||
Changing format of comments | Excel Discussion (Misc queries) | |||
"how can i format all the comments in a worksheet together?" | Excel Discussion (Misc queries) | |||
How can I pre format all Excel comments | New Users to Excel |