Multiple countif criteria

B

Brian Keogh

I wish to perform a COUNTIF based on two criteria. Column
A contains a region (Asia, Us, Europe), column B a
support call age in days.

I want to count all Asian calls < 90 days, all greater
than 90 but less than 120 etc

It seems COUNTIF doesn't support multiple criteria ie
COUNTIF(Region,"Asia" AND Call_Age "<90")
COUNTIF (Region,"Asia" AND Call_Age ">90" AND Call_Age
<"120)

Any pointers greatly appreciated.
Regards,
Brian Keogh
 
P

Peo Sjoblom

Try

=COUNTIF(Call_Range,">90")-COUNTIF(Call_Range,">=120")

or what might look more logical

=SUMPRODUCT(--(Call_Range>90),--(Call_Range<120))
 
B

Bob Phillips

=SUMPRODUCT((Region="Asia")*(Call_Age<90))

=SUMPRODUCT((Region="Asia")*(Call_Age>90)")*(Call_Age<120))


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address 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

Top