Please help

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

Guest

I would like to be able to return how many times a customer has had a problem
with our service per month.

My dates are entered as =date(2006,5,31) in column B.

I want to count how many times the text from a drop down list = "CUSTOMER"
in column S.

Could I use a COUNTIF to return the number of times "CUSTOMER" appeared in
column S during the month of MAY?

Your help is appreciated!!!
 
=SUMPRODUCT(--(S1:S100="CUSTOMER"),--(MONTH(B1:B100)=5))

Note that SUMPRODUCT doesn't work with complete columns, you have to specify
a range.

--
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