Setting the Default Font Size for Comment Balloons

Written by Allen Wyatt (last updated January 30, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003


When you insert a comment into a worksheet cell, Excel places the user's name on the first line of the comment balloon in bold type. The insertion point is then at the beginning of the next line, ready for your to type. What you type is inserted, by default, in 8-point Tahoma.

If you want a larger font used for your comment, you can change the character formatting of anything within the comment itself. Just select the text, then use the controls on the Formatting toolbar or by choosing Comment from the Format menu.

Excel does not provide a way for you to change the default font specifications for comment balloons, across the board. You can change them individually (as already mentioned), but not universally within Excel. You can make a change in Windows that will affect the comment font, however. Follow these general instructions:

  1. Right-click anywhere on the desktop. Windows displays a Context menu.
  2. Choose Properties. Windows displays the Display Properties dialog box.
  3. Make sure the Appearance tab is selected. (See Figure 1.)
  4. Figure 1. The Appearance tab of the Display Properties dialog box.

  5. In some versions of Windows you should click the Advanced button. Windows displays the Advanced Appearance dialog box. (See Figure 2.)
  6. Figure 2. The Advanced Appearance dialog box.

  7. Using the Item drop-down list, choose ToolTip.
  8. Using the other controls in the dialog box, change the font specifications as desired.
  9. Click OK, as necessary, to close all the open dialog boxes.

In case you didn't figure it out from these steps, the font used in the comment balloons of Excel is determined by the ToolTip font used by Windows. Changing the ToolTip font changes the comment balloons, but it also changes things in other applications besides Excel, as well. (Of course, if you think the font is too small in the comment balloons, you also probably think the font is too small everywhere else the ToolTip font is used.)

If you prefer to not change the ToolTip font, you can create an Excel macro that will step through all the comments in a worksheet to make changes.

Sub FixComments()
    Dim cmt As Comment

    For Each cmt In ActiveSheet.Comments
        With cmt.Shape.TextFrame.Characters.Font
            .Name = "Arial"
            .Size = 12
        End With
    Next cmt
End Sub

This macro changes the font to 12-point Arial for all comments. You could easily change the font and font size by making a change to the appropriate two lines of the macro.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2974) applies to Microsoft Excel 97, 2000, 2002, and 2003.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Freezing the Top Three Rows

Excel allows you to freeze rows or columns in your worksheet so that they don't scroll. How you freeze them can be a bit ...

Discover More

Changing Fonts in Data Validation Drop-Down Lists

The data validation capabilities of Excel allow you to easily create drop-down lists showing what data is acceptable for ...

Discover More

Getting Rid of Numbered Columns

Excel normally refers to columns as A, B, C, etc. It also has a referencing format that allows columns to be referred to ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (menu)

Better Use of Heading Space

If your column headings are too large to work well in your worksheet, why not turn them a bit? Here's how.

Discover More

Getting Rid of Leading Zeros in a Number Format

Excel, by default, displays numbers with a leading zero, if they are less than 1. Here's how you can get rid of those ...

Discover More

Using a Custom Format to Add Dashes

Want some dashes automatically added in values you display in a cell? It may be trickier to develop a custom format than ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.