Hi,
I need 2 conditions to be true before the formula can run. But its not working for me. Its acting as if its an "OR" statement. See example:
IF [A]<0 AND [B]>0
THEN 0
ELSE [A]/ [B]
ENDIF
I need both [A] to be less than 0 and [B] to be greater than 0 for the formula to return 0. As of now, when I run the model it wil return 0 if [A] is less than 0 OR [B] is greater than 0 What am I doing wrong?