Counting Based on Multiple Criteria

  • Thread starter Thread starter theboatdude
  • Start date Start date
T

theboatdude

Hi Everyone -

OK, here's what it is: I have a spreadsheet that includes, amongs
other information, the date an entry was made and the type of equipmen
it refers to. What I'm looking to do is have an automated report tha
will count based on 2 criteria: the month and the equipment (so
would be able to see how many entries were made on Equipment 1, durin
the month of January, say).

(NOTE: This, btw, is the same spreadsheet that I was referring to i
yesterdays post - just trying to get some different information)

Thanks to all.....C
 
try
=sumproduct((month(a2:a200)=2)*(b2:b200="joe"))
to count
=sumproduct((month(a2:a200)=2)*(b2:b200="joe")*c2:c200)
to sum
 

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