I have figured out how to both AND and OR functions, and can even do either with multiple conditions.
I am having a hard time trying to put multiple AND and multiple OR conditions in same formula.
=if((and('1'!m21>.1,m21<1)),"X",(if((or((and('1'!m22>.1,m22<50))),"X",(if((or((and('1'!m23>.1,m23<1000))),"X",(if((or((and('1'!>.1,m24<3))),"X"
This is what I've got, but I am sure it isn't right.
The intent is to yield an "X" if any of four conditions exists. Each condition has both a lower and upper limit:
M21 >.1 and <1
M22 >.1 and <50
M23 >.1 and M23 <1000
M24 >.1 and M24 <3
Is that written even close to right?
I am having a hard time trying to put multiple AND and multiple OR conditions in same formula.
=if((and('1'!m21>.1,m21<1)),"X",(if((or((and('1'!m22>.1,m22<50))),"X",(if((or((and('1'!m23>.1,m23<1000))),"X",(if((or((and('1'!>.1,m24<3))),"X"
This is what I've got, but I am sure it isn't right.
The intent is to yield an "X" if any of four conditions exists. Each condition has both a lower and upper limit:
M21 >.1 and <1
M22 >.1 and <50
M23 >.1 and M23 <1000
M24 >.1 and M24 <3
Is that written even close to right?