SUMIF not adding a range

K

Kathy

I can't get SUMIF to add the values in a range. I tried:
=SUMIF(B3:B7,"Check",C3:E7)
But it doesn't add all the values in the range C3:E7. It adds only some of
them.

I can make it work by listing each column range to be added separately, like
this
=SUMIF(B3:B7,"Check",C3:C7)+SUMIF(B3:B7,"Check",D3:D7)+SUMIF(B3:B7,"Check",E3:E7)

But it's a major pain to enter that whole thing each time.

Any idea why it won't add a range?
 
D

Domenic

Try...

=SUM(IF(B3:B7="Check",C3:E7))

....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

Hope this helps!
 

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

Top