How can I nest IFERROR functions to handle multiple potential errors?

Responsive Ad Header

Question

Grade: Education Subject: Support
How can I nest IFERROR functions to handle multiple potential errors?
Asked by:
69 Viewed 69 Answers

Answer (69)

Best Answer
(318)
You can nest IFERROR functions to handle multiple potential errors. For example: `=IFERROR(IFERROR(A1/B1, "Error 1"), "Error 2")`. This first checks if A1/B1 results in an error. If it does, it returns "Error 1". If A1/B1 is successful, it then checks if that result causes another error, and if so, returns "Error 2".