Adding numbers with #VALUE! between

  • Thread starter Thread starter Joey
  • Start date Start date
J

Joey

Hi all

I'm trying to add numeric data in a column but because it has "#VALUE!
inbetween I get a "#VALUE!" return.

Please let me know if there's a way of adding the numbers and ignorin
the "#VALUE!"

Many Thanks
Joe
 
Hi Joey,

Try,

=SUM(IF(ISNUMBER(A1:A100),A1:A100))

to be entered using CTRL+SHIFT+ENTER

Hope this helps!
 
Hi
one way: Try the following array formula (entered wirh
CTRL+SHIFT+ENTER):
=SUM(IF(ISERROR(A1:A100),,A1:A100))

But better: Try preventing these error results
 
Actually, this simpler formula seems to work as well,

=SUMIF(A1:A100,">0")
 
If the range were column A, the formula would look like:

=SUMIF(A:A,"<>#VALUE!")

HTH
Jason
Atlanta, GA
 
Hi Domenic
and what would happen to zeros or negative numbers in this range :-)
 
Hi Frank,

Yep! I realized afterwards that it wouldn't be the appropriate formula.

BTW, nice to see you back in full force after a few days absence! :-)
 
Domenic said:
Hi Frank,

Yep! I realized afterwards that it wouldn't be the appropriate
formula.

BTW, nice to see you back in full force after a few days absence!
:-)

Hi Domenic. Public holiday in Germany today :-)
Frank
 

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