Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I just installed Office 2003 and transfered excel files from the older
version. The comments that I had created before I moved to 2003 look fine in the default font (Tahoma); however, when I try to insert a new comment, the same font (same size, same formatting) the text looks virtually unreadable. I changed font in some comments and they look much better, but it is extremely inefficient to try to change font in every new comment I insert, so I thought maybe there is a way to do it on a default basis. Or maybe I somehow could change something to make Tahoma appear readable. Please, assist. |
#2
![]() |
|||
|
|||
![]()
We have no control over the default font Excel uses with new comments. I
saw no difference in the way the Tahoma font in comments looked in Excel 2003 versus earlier versions. Pretty weird. You can change comment fonts en masse with a macro though... Sub ChgAllCommentFonts() Dim Cell As Range For Each Cell In Cells.SpecialCells(xlCellTypeComments) With Cell.Comment.Shape.TextFrame.Characters.Font .Name = "Terminal" .Size = 9 End With Next End Sub -- Jim "Elena" wrote in message ... |I just installed Office 2003 and transfered excel files from the older | version. The comments that I had created before I moved to 2003 look fine in | the default font (Tahoma); however, when I try to insert a new comment, the | same font (same size, same formatting) the text looks virtually unreadable. I | changed font in some comments and they look much better, but it is extremely | inefficient to try to change font in every new comment I insert, so I thought | maybe there is a way to do it on a default basis. Or maybe I somehow could | change something to make Tahoma appear readable. Please, assist. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change the default font and size of "comments"? | Excel Discussion (Misc queries) | |||
Where to stick macro to change default comment font? | Excel Discussion (Misc queries) | |||
Changing default font for all comments | Excel Discussion (Misc queries) | |||
Changing default font in comments? | Excel Discussion (Misc queries) | |||
how do i set default font / text size in comments? | Setting up and Configuration of Excel |