Multiple AND/OR cases within an if statement
-
Hi there,
How can add multiple AND/OR cases within an if statement? See image. I only can add one AND within an if statement but I want to have more.

Any hints?
Thanks,
Mathias -
I don't exactly know what you would like to do, but you can do something like this:

or like this:

-
@dario Thanks for your reply. It's close to what I'm looking for. But I want to add another AND case within the if statement on the level where the arrows are.

-
@mathias can you please write the logic expression that you want to code in UIFlow?
Example:
(var1 > 50 and var1 < 70) and (var2 > 10 and var2 < 20) and (var3 > 30 or var4 > 50) -
@dario exactly the way you show in your example above.
-
The following example is this expression:
(var1 > 50 and var1 < 70) and (var2 > 10 and var2 < 20) and (var3 > 30 or var4 > 50)Step 1

Step 2

Step3

Step 4

-
@dario Thanks!