Most of us will agree that error values can be helpful and sometimes extremely unhelpful.  For example, the #N/A (Value Not Available) error is very helpful when cross-referencing two lists using the VLOOKUP function.  If Excel can’t find a lookup value, the #N/A error makes it obvious.

However, if you want to total a range that includes errors such as #N/A or #DIV/0, they suddenly become less special.

Sum a range of cells that include #N/A or #DIV/0! errors

If you have tried this, you will probably be frustrated that the SUM function returns another #N/A value and not the required total.  The same happens with the #DIV/0! (Divide by 0 error) as well.

na error

In this post I want to give you a couple of options that can be used to get past the error values and give you the range total.

Use this option if you still want to see the errors in the worksheet

Using the SUMIF function, you can create a total that excludes the cells containing errors. This option lets you see the #N/A errors in the Total range.

First, select the cell that will hold the TOTAL.  From the Formulas tab, in the Formulas group, click Math & Trig.  Select ‘SUMIF’ from the list.

In the ‘Range’ and ‘Sum_range’ boxes, enter the range you want to total.  Enter “<>#N/A” in the’ Criteria’ range and click OK.

na error

The arguments you have just entered perform the following tasks:

The ‘Range’ is the range that Excel will evaluate using the ‘Criteria’.  In the example below, Excel has looked at the range E5:E28, and using the criteria setting of <> (not equal to) #N/A, it has only included in the Total the cells that don’t contain ‘#N/A’.

na error

You can use the same function to total a range with #DIV/0! errors as well.

na error

Use this option to replace the errors with a value

Of course, if the errors were replaced with a value, the SUM function would perform as normal.  Let’s look at how to do this for the #DIV/0! error.  You can easily do the same for any error you must make.

In the example below, the SUM function is unable to display a total due to errors in the cells within the range.

na error

However, if I rewrite the ‘Unit Cost’ formula to include the IFERROR function, I can replace the #DIV/0! errors with a 0 (zero) value. IFERROR checks if the formula you are using will return an error. If it does, it will then replace the error with a value.

na error

With all cells in the range now holding a value, the SUM function in C10 makes it easy to create the range total.

na error

In my very popular Excel Stage 2 and 3 courses, I cover VLOOKUP, SUMIF, and IFERROR. If you want to learn the features of Excel that save you huge amounts of time, these courses are definitely for you!

Was this post helpful? Please let me know in the comments below.


Sharyn Baines
Sharyn Baines
Certified Microsoft Office Specialist

Was this blog helpful? I’m here to empower your journey with Excel, aiming to make your daily tasks more efficient and boost your potential.

Share your thoughts in the Comments below – your insights not only enrich others, they also help me tailor future content to your needs.

And if you’re looking to take a step further, join our exclusive ‘Insider Group‘. As a member, you’ll receive Weekly Super-Tips, and early access to in-depth tutorials. Sign up Today!”

Happy Excel-ling!!

4 Comments

  1. Thanks Tom! So happy our article was helpful to you. Thank you so much for letting us know.

  2. With the SUM function, what formula should I use if I want the cell to show the sum of a range if there are numbers in the range, but to show “NA”, when they are totally no numbers in the range?

  3. Hi there. You can use an IF function. For example, if you were trying to sum the range B6 to B10 this would work =IF(SUM(B6:B10)>0,SUM(B6:B10),”N/A”)
    I hope this helps 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *