Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dave Peterson
 
Posts: n/a
Default

Debra Dalgleish has lots of sample code for working with comments at:
http://www.contextures.com/xlcomments03.html

I stole one version and modified it to this:

Option Explicit
Sub ChangeCommentFont()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
With cmt.Shape.TextFrame.Characters.Font
.Name = "Times New Roman"
.Size = 11
.Bold = False
.ColorIndex = 0
End With
Next cmt
End Sub


She also has an example for adding comments using the font you want via a macro:
http://www.contextures.com/xlcomments03.html#Formatted

(That's the one I started with, too.)


armenthj wrote:

How do I complete a global change the font settings in comment boxes rather
than having to change the font in each comment box individually?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to change the default font and size of "comments"? ClayMcQ Excel Discussion (Misc queries) 1 January 7th 05 11:43 PM
Where to stick macro to change default comment font? [email protected] Excel Discussion (Misc queries) 1 January 1st 05 12:57 AM
How do I set default comment font Paul Matrix Excel Discussion (Misc queries) 2 December 30th 04 06:56 PM
Can I change the comment default font stp_paul Excel Discussion (Misc queries) 4 December 30th 04 04:18 PM
comment indicators should feature lock or pw protect limiting acc. summer_rose Excel Worksheet Functions 1 December 3rd 04 07:02 AM


All times are GMT +1. The time now is 04:33 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"