Excel surfaces errors as codes—learn to fix root cause instead of masking with IFERROR blindly.
Codes
#DIV/0! | Division by zero |
#N/A | Lookup not found |
#REF! | Invalid reference (deleted cells) |
#VALUE! | Wrong type (text in math) |
#NAME? | Unknown function name typo |
IFERROR
=IFERROR(VLOOKUP(A2,Table,3,FALSE),"Not found")
Audit
Formulas → Trace Precedents/Dependents. Evaluate Formula steps through calculation.
Important interview questions and answers
- Q: IFERROR risk?
A: Hides real data problems—log or separate error column in audits. - Q: #N/A?
A: Often lookup mismatch.
Self-check
- What causes #DIV/0!?
- When is IFERROR dangerous?
Pitfall: Blanket IFERROR on entire columns hides audit trails—use sparingly.
Interview prep
- #N/A?
Lookup or match not found.