How can I have 2 criterias within sumif function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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,
 
=SUMPRODUCT(--(rng1="value1"),--(MONTH(rng2)=9),rng3)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
=SUMPRODUCT(--(rng1="value1"),--(MONTH(rng2)=9),rng3)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
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
 
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
 
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)
 
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)
 

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