Differences Between ISERR and ISNA Functions in Google Sheets

Published on

To correctly understand the differences between the ISERR and ISNA functions, learning how to use them individually is essential.

ISERR—not to be confused with ISERROR—and ISNA are both simple and easy-to-use functions. But why are we comparing ISERR with ISNA, and why is it relevant?

The reason is that both functions deal with errors in Google Sheets, specifically the #N/A error. Let’s dive into the details.

How to Use the ISERR Function in Google Sheets

Purpose:

The ISERR function checks if a value results in any error other than #N/A.

Syntax:

ISERR(value)

Examples:

To better understand the ISERR function, let’s explore some common error types in Google Sheets.

Google Sheets ISERR Formula Examples

In the range C1:C10, you can see various error types that Google Sheets may return based on different formulas used in those cells.

While I’ll explain the formulas behind these errors in another tutorial, let’s focus on how to use the ISERR function.

In cell E1, I’ve applied the following formula, which has been copied down to the rest of the cells:

=ISERR(C1)

Note that the formula returns FALSE in cells E2, E3, and E10. Do you know why this happens?

The ISERR function considers all error types except #N/A as errors. Since the values in C2 and C10 are not errors, the ISERR formulas in E2 and E10 return FALSE.

Interestingly, ISERR does not treat #N/A as an error, so the formula in E3 also returns FALSE.

How to Use the ISNA Function in Google Sheets

Now that you understand ISERR, let’s move on to ISNA and explore the differences between these two functions.

Purpose:

The ISNA function specifically checks whether a value results in the #N/A error.

Syntax:

ISNA(value)

Examples:

In cell F1, I’ve applied the following formula, which is then copied down the column:

=ISNA(C1)

Now, take a look at cell F3 in the screenshot below. The formula returns TRUE, indicating the presence of a #N/A error in C3:

How to Use ISNA Function in Google Sheets
=ISNA(C3)

Since C3 contains the #N/A error, the ISNA function correctly returns TRUE in F3.

Differences Between ISERR and ISNA Functions

It’s important to compare ISERR with ISNA to understand how they differ. Take a look at the results in columns E (for ISERR) and F (for ISNA).

Take note of the highlighted cells in these columns. The ISERR function treats #N/A as non-error, returning FALSE. It also returns FALSE for any non-error values like numbers or text.

On the other hand, the ISNA function is exclusively concerned with the #N/A error. It only returns TRUE if the value in a cell is #N/A.

I hope this tutorial has helped you understand the usage and differences between the ISERR and ISNA functions in Google Sheets. Thank you for reading, and I hope you found this guide helpful!

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

How to Extract Numbers from Text in Excel with Regex

You can use the REGEXEXTRACT or REGEXREPLACE functions to easily extract numbers from text...

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

How to Use OFFSET and XMATCH Functions Together in Excel

We often use the OFFSET and XMATCH functions together to match a value in...

How to Calculate Maximum Drawdown in Excel and Google Sheets

You can use the following dynamic array formula to calculate maximum drawdown (MDD) in...

More like this

Using OFFSET and MATCH Together in Google Sheets: Advanced Tips

One powerful and flexible way to look up values is by combining the OFFSET...

Running Count with Structured References in Google Sheets

Running a count with structured references is achievable in Google Sheets tables using the...

Running Total with Structured Table References in Google Sheets

You can use two types of formulas to create a running total with structured...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.