0
0
Google Sheetsspreadsheet~5 mins

IFERROR and IFNA in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the IFERROR function do in Google Sheets?
IFERROR checks a formula for an error. If there is an error, it shows a value you choose. If no error, it shows the formula result.
Click to reveal answer
intermediate
How is IFNA different from IFERROR?
IFNA only catches #N/A errors, while IFERROR catches all types of errors like #DIV/0!, #VALUE!, and #N/A.
Click to reveal answer
beginner
Write a simple IFERROR formula to avoid showing an error when dividing by zero.
Example: =IFERROR(A1/B1, "Cannot divide by zero") will show "Cannot divide by zero" if B1 is zero or empty.
Click to reveal answer
beginner
What happens if IFERROR's formula does not produce an error?
IFERROR returns the normal result of the formula without any change.
Click to reveal answer
intermediate
Why might you use IFNA instead of IFERROR in a lookup formula?
Because IFNA only handles #N/A errors, it lets other errors show up. This helps you catch missing data without hiding other problems.
Click to reveal answer
What will =IFERROR(10/0, "Error") display?
A#DIV/0!
B0
CError
D10
Which error does IFNA specifically catch?
A#N/A
B#VALUE!
C#DIV/0!
DAll errors
If a formula returns 5, what does IFERROR(formula, "Oops") return?
AOops
B5
C#ERROR!
D0
Which function would you use to hide all errors with a custom message?
AIFERROR
BERROR.TYPE
CISERROR
DIFNA
Why use IFNA instead of IFERROR in a VLOOKUP?
ATo show error codes
BTo catch all errors
CTo speed up calculation
DTo only catch missing data errors (#N/A)
Explain how IFERROR works and give a real-life example where it helps.
Think about when a formula might break and how IFERROR can help.
You got /4 concepts.
    Describe the difference between IFERROR and IFNA and when to use each.
    Focus on the types of errors each function handles.
    You got /4 concepts.