Specifying Font Color in a Formula

Written by Allen Wyatt (last updated June 19, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021


2

Gregory has a desire to specify font color in a cell based on a formula. For instance, a cell might contain a simple IF function, such as =IF(A1>A2,5,7). If the "5" is returned, he would like the font to be normal, but if the "7" is returned, he would like it red. And, it must be noted, Gregory doesn't want to use a conditional formatting rule.

Short of using a macro (as described shortly) there is no way to specify font color in a formula. The easiest way to do this—well, the easiest way that doesn't use conditional formatting—is to create a custom format for the cell containing the formula. The format itself is quite simple:

[red][=7]General;General

The first part of the custom format (before the semicolon) indicates how positive numbers should be formatted. The portion after the semicolon indicates how negative numbers should be formatted. (The second, negative portion is included because if it is not, then Excel applies the singular format to every value that may appear in the cell, whether it be positive or negative.)

The first portion, for positive values, indicates that if the value in the cell is "7", then the value is shown in red. If it is any other positive value (including "5"), then it is shown in a regular font. If you want additional information about how to create custom formats, you can find a great tutorial at Mynda Treacy's site:

https://www.myonlinetraininghub.com/excel-custom-number-format-guide

The drawback to using custom formats in this way, of course, is that it is actually keyed to the value "7". If you want something a bit more generalized such that if any result where A1 is less than or equal to A2 results in the cell being red, then you might be interested in a macro-based approach. The following example is implemented as a user-defined function:

Function TColor(n1 As Double, n2 As Double) As Boolean
    If n1 <= n2 Then
        Application.Caller.Font.ColorIndex = 3
    Else
        ' Set font to normal
        Application.Caller.Font.ColorIndex = xlAutomatic
    End If
End Function

In order to use the UDF, just add it to your formula, in the following manner:

=IF(A1>A2,5,7)+TColor(A1,A2)

The UDF compares A1 to A2 and, if A1 is larger, then the text color is set to normal. If it is less than or equal to A2, then the text color is set to red.

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 (13874) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021.

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

Inserting the Edit Time

One of the things that Word keeps track of is how long, in minutes, you've been editing your current document. This ...

Discover More

Using the REPT Function

Excel includes a handy function that allows you to repeat characters or strings of characters. How you use the REPT ...

Discover More

Restoring Items in the Recycle Bin

Placing something in the Recycle Bin does not mean it is gone forever. After placing something there, you may change your ...

Discover More

Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!

More ExcelTips (ribbon)

Setting a Default Date Format

Enter a date into a cell, and Excel allows you to format that date in a variety of ways. Don't see the date format you ...

Discover More

Formatting for Hundredths of Seconds

When you display a time in a cell, Excel normally displays just the hours, minutes, and seconds. If you want to display ...

Discover More

Identifying Merged Cells

Merging cells is a common task when creating worksheets. Merged cells can play havoc with the normal functioning of some ...

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 9?

2021-06-28 10:26:10

J. Woolley

Re. the SetFont and SetFill functions in my previous comment (below), I added an optional Target parameter that permits setting font or fill for any cell or range.


2021-06-23 12:42:55

J. Woolley

This Tip inspired me to add two functions to My Excel Toolbox:
SetFont(Name, Size, Style, Color, Underline, Strikethrough)
and SetFill(Color, PatternStyle, PatternColor)
When these functions appear in a cell formula, they will set that cell's font and/or fill properties. For each function, all property parameters are optional and unchanged if missing.
Using these functions might be more convient than specifying a custom or conditional format for a single cell. They can be used with an IF(...) function to set or reset properties. Each function returns an empty string ("") in a text formula, zero (0) in a numeric formula, or FALSE in a boolean formula.
These functions are in module M_RunMacro. The MyToolbox.xlam add-in file includes all My Excel Toolbox modules and user forms.
See https://sites.google.com/view/MyExcelToolbox/


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu 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.