Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Conditional Formats that Distinguish Blanks and Zeroes.

Conditional Formats that Distinguish Blanks and Zeroes

Written by Allen Wyatt (last updated November 7, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003


Let's say that you routinely import information from another program into Excel. The information contains numeric values, but it can also contain blanks. You might want to use a conditional format on the imported information to highlight any zero values. The problem is, if you just add a conditional format that highlights the cells to see if they are zero, then the condition will also highlight any cells that are blank, since they contain a "zero" value, as well.

There are several different solutions to this predicament. One solution is to apply a conditional format that uses two conditions. The first condition checks for the blanks, and the second checks for zero values. The condition that checks for blanks doesn't need to adjust any formatting, but the one that checks for zero values can. This works because if the first condition is satisfied (the cell is blank), the second condition is never tested. Do the following:

  1. Select the range you want conditionally formatted. (For this example, I'll assume that you've selected the range A2:A99.)
  2. Choose Conditional Formatting from the Format menu. Excel displays the Conditional Formatting dialog box.
  3. Using the first drop-down list for Condition 1, choose Formula Is.
  4. In the formula box for Condition 1, enter the formula =ISBLANK(A2). (See Figure 1.)
  5. Figure 1. The Conditional Formatting dialog box after setting one condition.

  6. Click Add. Excel adds a second condition to the dialog box.
  7. Using the first drop-down list for Condition 2, choose Cell Value Is.
  8. Using the second drop-down list for Condition 2, choose Equal To
  9. In the value box for Condition 2, enter 0. (See Figure 2.)
  10. Figure 2. The Conditional Formatting dialog box after setting two conditions.

  11. Click the Format button for Condition 2. Excel displays the Format Cells dialog box.
  12. Use the controls in the dialog box to modify the formatting, as desired.
  13. Click OK to close the Format Cells dialog box.
  14. Click OK to close the Conditional Formatting dialog box. The formatting is applied to the range of cells you selected in step 1.

Another solution is to combine your two conditions into a single condition. Follow these steps:

  1. Select the range you want conditionally formatted. (For this example, I'll assume that you've selected the range A2:A99.)
  2. Choose Conditional Formatting from the Format menu. Excel displays the Conditional Formatting dialog box.
  3. Using the first drop-down list for Condition 1, choose Formula Is.
  4. In the formula box for Condition 1, enter the formula =AND(A2=0,A2<>"").
  5. Click the Format button for Condition 1. Excel displays the Format Cells dialog box.
  6. Use the controls in the dialog box to modify the formatting, as desired.
  7. Click OK to close the Format Cells dialog box.
  8. Click OK to close the Conditional Formatting dialog box. The formatting is applied to the range of cells you selected in step 1.

The formula used in step 4 checks to make sure that the value is 0 and that the cell is not blank. The AND function makes sure that only when both criteria are satisfied will the formula return True and the format be applied.

There are any number of other formulas that could also be used. For instance, each of the following formulas could be substituted in either step 5 or 4:

  • =AND(COUNT(A2)=1,A2=0)
  • =AND(A2=0,NOT(ISBLANK(A2)))
  • =AND(A2=0,LEN(A2)>0)
  • =NOT(ISBLANK(A2))*(A2=0)

If you wanted an even faster way to highlight zero values while ignoring blanks, you might consider using a macro. The macro would be faster because you could just import and run it; you don't have to select a range of cells and enter the formula (or formulas) for the conditional formatting. The following macro is an example of one you could use:

Sub FormatRed()
    TotalRows = 65000
    ColNum = 1

    For i = 1 To Cells(TotalRows, ColNum).End(xlUp).Row
        Cells(i, ColNum).Interior.ColorIndex = xlAutomatic
        If IsNumeric(Cells(i, ColNum).Value) Then
            If Cells(i, ColNum).Value = 0 Then
                Cells(i, ColNum).Interior.ColorIndex = 3
            End If
        End If
    Next
End Sub

The macro checks the cells in column A. (It checks the cells in rows 1 through 65,000; you can modify this, if desired.) If the cell contains a numeric value and that value is zero, then the cell is filled with red. If the cell contains something else, then the cell is set back to its normal color.

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 (2980) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Conditional Formats that Distinguish Blanks and Zeroes.

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

Using Document Properties to Ensure Consistent References

If you need to refer to the same information over and over in a document, you may be interested in using custom document ...

Discover More

Adding Drop-Shadows to Paragraphs

Drop shadows are a style of paragraph border used to enhance the visual impact of a paragraph. They are also a great way ...

Discover More

Inserting Worksheet Values with a Macro

Macros are often used to process information in a worksheet. You may need your macro to change the values stored in ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (menu)

Conditional Formatting for Errant Phone Numbers

Conditional formatting can be used to draw attention to all sorts of data based upon the criteria you specify. Here's how ...

Discover More

Conditionally Formatting Non-Integers

The conditional formatting capabilities of Excel are very helpful when you want to call attention to different values ...

Discover More

Shading Rows with Conditional Formatting

If you need to shade alternating rows in a data table, you'll want to examine how you can accomplish the task with ...

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 nine more than 6?

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.