Combining Functions

K

Kevin B

The following conditions is IF A1 = 12 and B10 = 15 and C2 = 0 then condition
is met, otherwise it's not met.

=IF(AND(A1=12,B10=15,C22=0),"Condition Met", "Condition Not Met")
 
M

MikeM

I want to return a value from another cell as opposed to a "true" or "false",
is this possible?
MikeM
 
K

Kevin B

Just replace the text values with the cell you want referenced:

=IF(AND(A1=12,B10=15,C22=0),Z10, X11)
 
Top