Where to stick macro to change default comment font?

G

Guest

I just did a search of this group to try to figure out how to change
the default comment font from bold to regular in Excel 97.

The consensus seemed to be that there is no way to change that setting
so a macro has to be used.

I don't have a clue what to do with a macro. I mean, where am I
supposed to stick it to make it work?

What I want is for the comment window to open with no author name and
no bold font.

Here's a suggested macro I found in this group:

Sub NewComment()
On Error GoTo HasComment
With ActiveCell
..AddComment.Visible = True
..Comment.Shape.Select
Selection.Font.Name = "Comic Sans MS"
Selection.Font.Size = 12
..Comment.Visible = False
End With
HasComment:
SendKeys "+{F2}"
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