Conditional Joiners |
Use conditional joiners to join two or more conditional statements to create a new conditional expression that an action evaluates to determine whether it runs.
The following conditional joiners are available.
Symbol |
Joiner |
Description |
---|---|---|
|
And |
When two or more conditional statements are joined by an "And" joiner, all conditional statements must be met to run the action. |
|
Or |
When two or more conditional statements are joined by an "Or" joiner, one or more of the conditional statements must be met to run the action. |
|
Not And |
When two or more conditional statements are joined by a "Not And" joiner, the action is run if at least one of the conditional statements is unmet. If all the conditional statements are met, the action is not run. |
|
Not Or |
When two or more conditional statements are joined by a "Not Or" joiner, all of the conditional statements must be unmet to run the action. |