How can I have 2 criterias within sumif function

C

Chris Harman

Is it possible to have 2 criteria's within sum if function

i.e. I wish to pickup A calendar month and a particular fault description.

Thanks,
 
B

Bob Phillips

=SUMPRODUCT(--(rng1="value1"),--(MONTH(rng2)=9),rng3)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
C

Chris Harman

not managed to produce anything with that one.

What I need is something like

IF B3:B100 "Jan" and G3:G100 "Clarity" total F3:f100
 
B

Bob Phillips

It ain't hard

=SUMPRODUCT(--(G3:G100="Clarify"),--(MONTH(B3:B100)=1),F3:F100)

I assume that B3:B100 are real dates not month names.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Top