NOT
Syntax
NOT (condition)
Description
Reverses the value of condition.
Arguments
condition | A logical expression that can be evaluated to True or False. |
Returns
The reverse Boolean value of condition:
If condition evaluates to True, NOT returns Boolean False.
If condition evaluates to False, NOT returns Boolean True.
Examples
If MyEntity.State contains the value "NH" and MyEntity.PostalCode contains the value "03104", then:
Given the above, the following formula:
IF(NOT(MyEntity.State = "MA"), TRUE, FALSE)
Returns: TRUE
And the following formula:
IF(NOT(MyEntity.State = "NH", MyEntity.PostalCode = "03104"), TRUE, FALSE)
Returns: FALSE