How can I make a decision based on a boolean operators?
Is it possible to make this decision in one time?
temp >200 AND temp <400
Can I do this without using multiple decisions?
Can someone post a decision that is based on boolean operators?
An example:
(temp >200 AND temp <400) OR (temp=tempmax AND temp<>tempmin)
Is this possible in Flowcode in one time?
Where temp, tempmax and tempmin are variables?