View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jim Rech Jim Rech is offline
external usenet poster
 
Posts: 2,718
Default format for comments

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
|