default font(size) in Comments

R

Robert

I would like to change the default font and fontsize used in Comments.
Have found the setting in Windows but cannot find it in Office X (SR 1)
for Mac.

Help is appreciated!!!

Robert
 
J

JE McGimpsey

Robert said:
I would like to change the default font and fontsize used in Comments.
Have found the setting in Windows but cannot find it in Office X (SR 1)
for Mac.

AFAIK, there is no user-accessible setting for default font/fontsize in
any MacXL version (there isn't in WinXL, either, at least in XL02 and
earlier versions - you instead change the default Windows settings)

One workaround would be to put this macro in your Personal Macro
Workbook and use Tools/Customize to attach the macro to the
Insert/Comment command.

Or, you could instead attach it to a new toolbar button or keyboard
shortcut:

Public Sub NewInsertComment()
Dim oComment As Comment
With ActiveCell
Set oComment = .Comment
If oComment Is Nothing Then
.AddComment
With .Comment
With .Shape.TextFrame.Characters.Font
.Name = "Arial"
.Size = "12"
.FontStyle = "Regular"
End With
.Text Text:=Application.UserName & ":" & vbNewLine & ""
.Shape.TextFrame.Characters(1, _
Len(.Text) - 1).Font.Bold = True
.Visible = True
End With
End If
End With
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top