sumif with multiple criteria..

R

Reed

I need to sum certain cells in a column assuming multiple
criteria are true. A sumif funtion would work for this
if only one criteria needed to be tested. However, I
can't think of a way to do a sumif with multiple
criteria. Any ideas would be greatly appreciated.

Thanks,
Reed
 
A

Anon

Reed said:
I need to sum certain cells in a column assuming multiple
criteria are true. A sumif funtion would work for this
if only one criteria needed to be tested. However, I
can't think of a way to do a sumif with multiple
criteria. Any ideas would be greatly appreciated.

Thanks,
Reed

Use SUMPRODUCT. You can put in as many criteria as you wish. For example
=SUMPRODUCT( (A1:A100="ABC") * (B1:B100>15) * (C1:C100=$E$1) * D1:D100)
 
R

reed

-----Original Message-----


Use SUMPRODUCT. You can put in as many criteria as you wish. For example
=SUMPRODUCT( (A1:A100="ABC") * (B1:B100>15) * (C1:C100=$E$1) * D1:D100)
I tried doing this, but it doesn't seem to work, I get a
a #NUM error. Furthermore, maybe you could give me some
insight into this technique. Does the * here simply mean
multiplication, or does it mean something else?
 
M

Mathew P Bennett

Hi Thread.
Alan, this =sum(sumif(... formula looks interesting, how many conditions 1st
Value,2nd Value etc. can one use?
Cheers
Mathew
 
M

Mathew P Bennett

Hi Again Thread
Cheers Alan, this array formula has helped me with a completely different
problem from original post from Reed.
Cheers
Mathew
 
A

Alan Beban

I don't know, I got bored after 10. Once it passed 7, the next limit I
would guess at would be 30.

Why don't you report back after you've checked it out :)

Alan Beban
 

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