M MikeM Sep 30, 2008 #1 Is there a way to combine the "IF" function and the "AND" function in one formula?
K Kevin B Sep 30, 2008 #3 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")
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 Sep 30, 2008 #4 I want to return a value from another cell as opposed to a "true" or "false", is this possible? MikeM
I want to return a value from another cell as opposed to a "true" or "false", is this possible? MikeM
K Kevin B Sep 30, 2008 #5 Just replace the text values with the cell you want referenced: =IF(AND(A1=12,B10=15,C22=0),Z10, X11)
Just replace the text values with the cell you want referenced: =IF(AND(A1=12,B10=15,C22=0),Z10, X11)
M MikeM Oct 16, 2008 #6 Thanks for your help! MikeM said: I want to return a value from another cell as opposed to a "true" or "false", is this possible? MikeM Click to expand...
Thanks for your help! MikeM said: I want to return a value from another cell as opposed to a "true" or "false", is this possible? MikeM Click to expand...