I need to create an "IF, THEN, ELSE" statement with an "and" in the middle. How do I present the data fields in the formula. I keep receiving errors.
Since thread was started on 13 Feb I am assuming you may have already received and answer. In any case:
The IF THEN Statement
A=2
B=3
C=4
D=3
=if(a=2,1,0) equals 1
=if(and(a=b,c=d),1,0) equals 0, because both need to be true for “and”
or
=if(and(a>=b,c<=d),1,0) equals 0
or
=if(and(a<b,b<c,c>d),1,0) equals 1
or
if(or(a>b,c>d),1,0) equals 1, because only 1 needs to be true for “or”
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.