XL: How to Suppress Error Values on a Worksheet (87299)



The information in this article applies to:

  • Microsoft Excel 2000
  • Microsoft Excel 2002
  • Microsoft Excel 97 for Windows
  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q87299

SUMMARY

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

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.

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


Modification Type:MajorLast Reviewed:5/13/2003
Keywords:kberrmsg kbhowto KB87299