LogicalOperators
And
Takes the two values ValueA (Boolean) and ValueB (Boolean) as input and determines whether the expression evaluates to TRUE.
Syntax
And ( ValueA , ValueB )
Parameters
ValueA First part of the evaluation. Type: Boolean
ValueB Second part of the evaluation. Type: Boolean
Return Type
Boolean
Not
Negates the output of Value.
Syntax
Not ( Value )
Parameters
Value Negation expression. Type: Boolean
Return Type
Boolean
Or
Takes the two values ValueA and ValueB as input and determines whether the expression evaluates to TRUE.
Syntax
Or ( ValueA , ValueB )
Parameters
ValueA First part of the evaluation. Type: Boolean
ValueB Second part of the evaluation. Type: Boolean
Return Type
Boolean
Last updated
Was this helpful?