<(E-Mail Removed)> wrote in message news:(E-Mail Removed)
> Is it possible to change the default formatting of comments in Excel? I
> would like to have a larger font size in comments, but it always
> defaults to Arial, 8pt.
>
> I tried to change the AutoShape defaults, but that didn't help.
How about using the add-in which have following code in standard module.
(This add-in changes only cell's context menu.)
Option Explicit
'
Sub Auto_Open()
On Error Resume Next
SendKeys "{ESC}"
Application.CommandBars("Cell").ShowPopup
Application.CommandBars("Cell").FindControl(ID:=2031).OnAction _
= "MyComment"
On Error GoTo 0
End Sub
'
Sub Auto_Close()
On Error Resume Next
SendKeys "{ESC}"
Application.CommandBars("Cell").ShowPopup
Application.CommandBars("Cell").FindControl(ID:=2031).Reset
On Error GoTo 0
End Sub
'
Sub MyComment()
With Selection.AddComment
.Visible = False
.Text "Comment:"
With .Shape.TextFrame.Characters.Font
.Name = "Times New Roman"
.FontStyle = "Normal"
.Size = 11
End With
End With
SendKeys "%(IE){ENTER}"
End Sub
--
Miyahn (Masataka Miyashita) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)
https://mvp.support.microsoft.com/pr...4-83d372c269b4