Summing a Column wit errors?

  • Thread starter Thread starter Jako
  • Start date Start date
J

Jako

I have a coulmn with range "K10:K30".

In Cell "K31" i want the value of the above range.

However, there are and could be some cells in the range that have the
error n/a.

What function would add all values but ignore the errors and also if
there are no values i want cell "K31" to have the value 0.

TIA
 
=SUM(IF(ISNUMBER(K10:K30),K10:K30))

...entered using CONTROL+SHIFT+ENTER.

Hope this helps!
 
You've got answers but personally I'd rather fix the cells that may return
errors in the first place:-

=IF(ISNA(Your_Formula),0,Your_Formula) is just one way of possible doing that.
 

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