0
0
Excelspreadsheet~20 mins

IFERROR for error handling in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
IFERROR Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this formula with IFERROR?
Given the formula =IFERROR(10/0, "Error") in a cell, what will be the displayed result?
Excel
=IFERROR(10/0, "Error")
A0
BError
C#DIV/0!
D10
Attempts:
2 left
💡 Hint
Think about what happens when you divide by zero and how IFERROR handles it.
Function Choice
intermediate
2:00remaining
Which formula correctly uses IFERROR to handle a VLOOKUP error?
You want to look up a value in a table but return "Not found" if the value is missing. Which formula does this correctly?
A=IF(ISERROR(VLOOKUP(A2, B2:D10, 2, FALSE)), "Not found")
B=IF(VLOOKUP(A2, B2:D10, 2, FALSE) = "", "Not found", VLOOKUP(A2, B2:D10, 2, FALSE))
C=IFERROR(VLOOKUP(A2, B2:D10, 2, FALSE), "Not found")
D=IFERROR(VLOOKUP(A2, B2:D10, 2, TRUE), "Not found")
Attempts:
2 left
💡 Hint
IFERROR catches errors and returns a custom message. VLOOKUP with FALSE looks for exact matches.
data_analysis
advanced
2:00remaining
Analyze the output of nested IFERROR formulas
What is the result of this formula if cell A1 contains the text "apple"?
=IFERROR(VALUE(A1), IFERROR(1/0, 100))
Excel
=IFERROR(VALUE(A1), IFERROR(1/0, 100))
A100
B#VALUE!
C0
D#DIV/0!
Attempts:
2 left
💡 Hint
VALUE("apple") causes an error. The inner IFERROR handles division by zero.
🎯 Scenario
advanced
2:00remaining
Choose the formula that prevents #N/A errors in INDEX-MATCH
You use =INDEX(B2:B10, MATCH("Orange", A2:A10, 0)) but sometimes "Orange" is missing, causing #N/A error. Which formula avoids showing #N/A and shows "Missing" instead?
A=IFERROR(INDEX(B2:B10, MATCH("Orange", A2:A10)), "Missing")
B=IF(ISNA(MATCH("Orange", A2:A10, 0)), "Missing", INDEX(B2:B10, MATCH("Orange", A2:A10, 0)))
C=IFERROR(MATCH("Orange", A2:A10, 0), "Missing")
D=IFERROR(INDEX(B2:B10, MATCH("Orange", A2:A10, 0)), "Missing")
Attempts:
2 left
💡 Hint
IFERROR can catch any error in the whole formula and return a friendly message.
📊 Formula Result
expert
2:00remaining
What is the output of this complex IFERROR formula?
Given the formula =IFERROR(1/(A1-5), IFERROR(SQRT(A1-5), "No result")) and cell A1 contains 3, what is the displayed result?
Excel
=IFERROR(1/(A1-5), IFERROR(SQRT(A1-5), "No result"))
A-0.5
BNo result
C#NUM!
D#DIV/0!
Attempts:
2 left
💡 Hint
Calculate each part step by step and see which errors occur.