SUMIF with more than 1 criteria

G

Guest

Hi

I am trying to sum cells that fulfil either criteria A or criteria B. I have
tried =SUMIF(P:p,A1orB1,G:G). I can not simply add two SUMIF's together as I
need to reduce the length of the overall formula.

Thanks for your help
 
A

Aladin Akyurek

It is unclear what criteria are: cells or strings...

1.

=SUMPRODUCT(($P$2:$P$100=X1)+($P$2:$P$100=Y1),$G$2:$G100)

2.

=SUM(SUMIF(P:p,{Crit1,Crit2},G:G))

A ctiterion that is string must be put between double quotes like in:

{"Orange","Kiwi"}

{10,12}
 
N

Nick

hi,

use an array formula like

SUM(IF((FirstRangedName=FirstCriteria)*(SecondRangedName=SecondCriteris);RangeToSum;0))

Don't forget that * stands for AND , +for OR

Regards,

Nick
(e-mail address removed)
 
H

Harlan Grove

Aladin Akyurek said:
2.

=SUM(SUMIF(P:p,{Crit1,Crit2},G:G))
....

Dangerous in the general case, e.g.,

=SUM(SUMIF(P:p,{"a*","*z"},G:G))

This idiom only works when the criteria are mutually exclusive.
 

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

Similar Threads

Result based on two criteria 3
SUMIF with criteria "<>" & "=" 4
Sumif with Multiple Criteria 3
subtotal with sumif nested 1
Sumif using Arrays 2
sumifs criteria 3
Sumif 5
SUMIF and AND/OR/NOT 7

Top