Google Sheets
ISNA function in Google Sheets
Checks whether a value is the error `#N/A`.
=ISNA(value)ISNA syntax and parameters
One argument, one required.
- valueanyRequired
The value to be compared with the error value #N/A. *ISNA returns TRUE if value is #N/A or a reference to a cell containing #N/A and false otherwise.
ISNA examples
Formulas you'll actually reuse.
Only a missing match should count as new — other errors stay visible:
=IF(ISNA(MATCH(A2, Customers!A:A, 0)), "New customer", "Existing")Result
"New customer"How many lookups came back #N/A:
=SUMPRODUCT(--ISNA(F2:F200))Result
4
ISNA in Excel
Same name — your formula ports as-is.
Try ISNA in the playground
Edit the example — nothing to install.
Preloaded with the ISNA formula from Example 1 — change anything and watch it respond.
Loading the editor…
Related functions
More ways Google Sheets gets this done.
- CELLReturns the requested information about the specified cell.InfoExcel
- ERROR.TYPEReturns a number corresponding to the error value in a different cell.InfoExcel
- ISBLANKChecks whether the referenced cell is empty.InfoExcel
- ISDATEReturns whether a value is a date.InfoNo Excel equivalent
- ISEMAILChecks whether a value is a valid email address.InfoNo Excel equivalent
- ISERRChecks whether a value is an error other than `#N/A`.InfoExcel