Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Comments in Excel 1

Status
Not open for further replies.

SimonDavis

Technical User
Mar 16, 2001
613
GB
Anybody know how to change the default format of comments in cells?

The default on mine is 8 point Tahoma, which on 1024 x 760 looks like a squashed ant.

Thanks
 
Highlite the comment, and go to the format option and choose your font. ASD...
 
Sorry, go to tools and options and change the default to whatever font you want, this will affect all fonts I believe. ASD...
 
Unfortunately that doesn't work. The default font applies to just about everything except the comments. I've been trying to solve this for a while actually.

I know I can change them manually after I've inserted them, but it's a bit tedious when there are a lot of them.

Anyway, thanks for the ideas!
 
try this...

Sub ChangeCommentFont()
Dim myCmt As Comment, i As Integer

For Each myCcmt In ActiveSheet.Comments
With myCmt.Shape.TextFrame.Characters.Font
.Name = "Arial"
.Size = 16
.Bold = False
End With
Next
End Sub


change the font name sizes and other characteristics to refine your styling. probably not much use anymore but what the heck.

cheers

Matthew

The only bad question is the question you dont ask!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top