Challenge - 5 Problems
IFERROR and IFNA Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
Output of IFERROR with division by zero
What is the output of the formula
=IFERROR(10/0, "Error") in Google Sheets?Google Sheets
=IFERROR(10/0, "Error")
Attempts:
2 left
💡 Hint
IFERROR returns the second value if the first causes an error.
✗ Incorrect
The formula tries to divide 10 by 0, which causes a division error. IFERROR catches this and returns the second argument, "Error".
📊 Formula Result
intermediate1:30remaining
Output of IFNA with VLOOKUP missing value
Given a table where
A2:A4 contains names and B2:B4 contains ages, what is the output of =IFNA(VLOOKUP("John", A2:B4, 2, FALSE), "Not found") if "John" is not in the list?Google Sheets
=IFNA(VLOOKUP("John", A2:B4, 2, FALSE), "Not found")
Attempts:
2 left
💡 Hint
IFNA returns the second value only if the first returns #N/A error.
✗ Incorrect
VLOOKUP returns #N/A when it can't find "John". IFNA catches this and returns "Not found".
❓ Function Choice
advanced1:30remaining
Choosing between IFERROR and IFNA
You want to catch only #N/A errors from a formula but let other errors show normally. Which function should you use?
Attempts:
2 left
💡 Hint
IFNA only catches #N/A errors, IFERROR catches all errors.
✗ Incorrect
IFNA catches only #N/A errors and leaves other errors visible. IFERROR catches all errors.
🎯 Scenario
advanced2:00remaining
Handling errors in nested formulas
You have a formula
=A1/B1 that sometimes causes division errors. You want to show "Divide by zero" if B1 is zero, and "Error" for any other error. Which formula achieves this?Attempts:
2 left
💡 Hint
Check the condition for zero first, then handle other errors.
✗ Incorrect
Option C first checks if B1 is zero and returns "Divide by zero". Otherwise, it tries A1/B1 and catches other errors with IFERROR returning "Error".
❓ data_analysis
expert2:30remaining
Counting errors handled by IFERROR
Given a column
C2:C10 with formulas that may produce errors, which formula counts how many cells return an error that IFERROR would catch?Attempts:
2 left
💡 Hint
IFERROR catches all errors, not just #N/A.
✗ Incorrect
ISERROR detects all error types. SUMPRODUCT with double unary counts how many cells have errors. COUNTIF with specific error text counts only that error type.