How to do multiple conditional test using "AND" in #if and #else if? #405
Unanswered
fliptoback
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Try this:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
How do I do multiple "and" checks in #IF and #ELSE IF?
For example:
#IF (A <= 1.25)
run code if this condition is true
#ELSE IF (A >1.25) AND (B =0)
run code here if this is true
#ELSE IF (A>1.25) AND (B>0)
run code here if this is true
#END IF
This does not work currently - is there a way I can improve this?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions