Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL: How to Suppress Error Values on a Worksheet


View products that this article applies to.

Summary

In Microsoft Excel, you can prevent error values (such as #N/A, #VALUE!, #REF!, and #NUM!) from being displayed.

↑ Back to the top


More information

To suppress error values, use either of the following methods.

Method 1: Use an IF Statement

Use the following IF statement
=IF(ISERROR(formula),"",formula)
where formula is the formula for which you want to suppress the error value. If formula returns an error, this statement returns "" (a null character); otherwise it returns the result of formula.

NOTE: There is no space between the quotation marks.

Method 2: Hide the Error Value with Formatting

Use a combination of colors and custom formats to "hide" the error value. To make error values invisible, use the background color for everything in the selected cells except numbers. To do this, follow these steps:
  1. Select the cells you want to format.
  2. On the Format menu, click Cells, and then click the Font tab.
  3. In the Color list, click the color that matches your background color.
  4. Click the Number tab. Create a custom number format that includes a color. For example, create a custom format similar to the following:
    [BLACK]General
    [BLACK]$#,##0.00;[RED]$#,##0.00
  5. Click OK.

↑ Back to the top


References

For additional information, click the article number below to view the article in the Microsoft Knowledge Base:
288972 XL2002: How to Suppress the Printing of Errors in Workbook Cells

↑ Back to the top


Keywords: KB87299, kbhowto, kberrmsg

↑ Back to the top

Article Info
Article ID : 87299
Revision : 3
Created on : 9/19/2011
Published on : 9/19/2011
Exists online : False
Views : 440