Multiple Countif or similar function

T

TimE

I need a formula that will look in column A and if a criteria is met,
then count column C for another criteria.

ex.

A C
1 PROJECT # STATUS
2 214 Complete
3 817 Scheduled
4 972 Scheduled
5 254 Complete
6 911 Refused
7 214 Complete
8 214 Refused
9 972 Scheduled

RESULTS

PROJECT # Complete Scheduled Refused
214 2 0
1
254 1 0
0
817 0 1
0
911 0 0
1
972 0 2
0


Am I going about this all wrong? Thank you for any help.
 
A

Andy B

Tim

One way is to use SUMPRODUCT()

=SUMPRODUCT((B2:B9=214)*(C2:C9="Complete"))
=SUMPRODUCT((B2:B9=214)*(C2:C9="Scheduled"))
etc

Andy.
 
T

TimE

Thank you Andy,

I should have included one more kink in it. The Status contains
"Complete, Refresh" etc. I actually need it to work with wildcards.
"*complete*" does not work with sumproduct. Any other ideas.
 
T

TimE

Thank you Andy,

I should have included one more kink in it. The Status contains
"Complete, Refresh" etc. I actually need it to work with wildcards.
"*complete*" does not work with sumproduct. Any other ideas.
 

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