Based on Mulipple Criteria acrossed Column count last column

L

LBitler

I have tried Macros and VBA and can not get anything to work with out
performing part of the process manually.

A B C D
1 - Issued 4140 x
2 A Reject 4150 y
3 B Released SP z
4 - Issued 4140 x
5 - Reject SP w

Logic:
If A = -
and if B = Issued
and if C = 4140
then Count D

Answer 2

Can someone help
 
F

Fred Smith

Try this:
=Sumproduct(--(a1:a5="-"),--(b1:b5="Issued"),--(c1:c5=4140))

In your example, the value of D is immaterial. If you want to check for an
"x" in D, just add it to the above.

Regards,
Fred.
 

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