Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 15

Auditing and Debugging

Formula Errors in Google


Sheets
I. An error message popup
preventing to enter formula

•  Check formula prior to hitting enter. Make sure there is no missing 
cell reference and any unwanted characters lurking.
II. #N/A Error Message
• The #N/A error signifies that a value is not available.
How to correct an #N/A error?
=IFERROR(original formula, value to display if the original formula gives an
error)
III. #DIV/0! Error Message
• This happens when a number is divided by zero, which can occur 
when you have a zero or a blank cell reference in the denominator.

Use the IFERROR formula to wrap


your current formula and specify a
result for when a #DIV/0! error
occurs.
IV. #VALUE! Error Message
• This error typically occurs when the formula is expecting a certain 
data type as an input but receives the wrong type.
V. #REF! Error Message
• The #REF! error occurs when you have an invalid reference or when 
reference cell has been deleted or missing. 
Lookup Out Of Bounds
• #REF! error when return value is outside of specified ranges.
Circular Dependency
• #REF! error when the formula refers to itself
VI.  #NAME? Error Message
• The #NAME? error signifies a problem with your formula syntax such 
as misspelt formula or named range that doesn’t exist
VII. #NUM! Error Message
• The #NUM! error is shown when your formula contains numeric 
values that aren’t valid.
VIII. #ERROR! Error Message
• It means that Google Sheets can’t understand the entered formula, 
because it can’t parse the formula to execute it.
IX. #NULL! Error Message
• It occurs when the two or more cell references are separated 
incorrectly or unintentionally by a space in a formula
Functions to help deal with
formula errors
• =NA()    will output an #N/A error.
• =ERROR.TYPE(value)    will return a number corresponding to the error type:
1 for #NULL!
2 for #DIV/0!
3 for #VALUE!
4 for #REF!
5 for #NAME?
6 for #NUM!
7 for #N/A
8 for all other errors
Functions to help deal with
formula errors
• =ISNA(value)    checks whether a value is the error #N/A, and will give 
the output TRUE for a #N/A error and FALSE otherwise. 
• =ISERR(value)    checks whether a value is any error other than the 
#N/A error.
• =ISERROR(value)    checks whether a value is an error, and will give 
the output TRUE for any error

You might also like