Forum Discussion
kmcdermott1974
Dec 06, 2021Copper Contributor
IF statement with 2 variables
Can someone assist.
If 2<3 and 1>2, true = 2 false = 0 How do I write this IF statement ?
9 Replies
- cbarrosoBrass ContributorSomething like:
IF(AND(2 < 3; 1 > 2); 2; 0)- kmcdermott1974Copper ContributorI have tried and its not working
=IF(AND(E36 < E41; E38 > E36); E36; 0)- cbarrosoBrass ContributorI guess the formula is working but the resul is not what you expect π
Can u provide a sample of data with the expected result?