Question
How can I use IFERROR to display a blank cell instead of an error message?
Asked by: USER9552
74 Viewed
74 Answers
Answer (74)
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.