Sum the column with the error cells

  • Thread starter Thread starter David
  • Start date Start date
D

David

I am trying to add the total for one column in which some cells have the
#REF! sign. My formula is:
=SUMIF(Data!A1:Data!A100,"<>#VALUE!")
but the output is still #REF! and cannot display the value total. Does my
formula miss any?
 
Your sheet reference is invalid (you truly do have a reference error).

=SUMIF(Data!A1:A100,"<>#VALUE!")

Of note, why are you checking for "#VALUE!"? should it be searching for the
"#REF!"?
 
Thanks, Luke. I thought the <>#VALUE! means check out for all criterias
except the NOT VALUE data. How about to include the #NUM!?
 
Hi,

Try this

=SUMIF(B1:B11,"<9E9")

This handles all error types.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top