TRUE_FALSE AND TRUE_FALSE Operator
The TRUE_FALSE AND TRUE_FALSE operator returns a value of true if both of the true/false values you specify are true.
You can use this operator to form more complex conditions for IF statements. This can be useful in determining template logic.
Operator | Model | After you drag and drop the model into the script tab: | Expression returns: |
AND | ⟦TRUE_FALSE⟧ AND ⟦TRUE_FALSE⟧ | Replace the ⟦TRUE_FALSE⟧ placeholders each with an expression that evaluates to either true or false. | A true/false value. |
Example
There are many scenarios where you would want to use the AND operator to form your IF statements. For example:
IF Client is Married AND Client has Children
//do something
END IF