How can I use IFERROR to display a blank cell instead of an error message?

Responsive Ad Header

Question

Grade: Education Subject: Support
How can I use IFERROR to display a blank cell instead of an error message?
Asked by:
74 Viewed 74 Answers

Answer (74)

Best Answer
(178)
You can use an empty string ("") as the 'value_if_error' argument. For example: `=IFERROR(A1/B1, "")`. This will display a blank cell if B1 is zero, effectively hiding the error.