Checking if 2 of 3 conditions are met...

G

guilbj2

I'm trying to figure out an =IF to check if 2 of 3 conditions are met.
The conditions are as follows

E="Y"
H3>=10
I3="Win"

What I'm trying to do is set the value in a cell to "Pass" if ANY 2 (or
all 3) of the conditions are met. Any ideas?
 
B

Bondi

Hi,

Maybe you can use somthing like this:

=IF((E3="Y")+(H3>=10)+(I3="Win")>=2,"Pass","Fail")

Regards,
Bondi
 
G

Guest

Try this formula:

=IF(OR(AND(E3="Y",H3>=10),AND(E3="Y",I3="Win"),AND(H3>=10,I3="Win")),"PASS","")
 
G

Guest

Put this into your target cell

=IF(OR(AND(E3="Y",H3>=10),AND(E3="Y",I3="Win"),AND(H3>=10,I3="Win")),"Pass","Fail")
 
G

Guest

=IF(OR(AND(E3="y",OR(H3=10,I3="win")),AND(H3=10,I3="win")),"Pass","Fail")

Vaya con Dios,
Chuck, CABGx3
 
G

Guest

Opps.........forgot the > symbol...........

=IF(OR(AND(E3="y",OR(H3>=10,I3="win")),AND(H3=>10,I3="win")),"Pass","Fail")

Vaya con Dios,
Chuck, CABGx3
 

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