Not

Description

The NOT function inverts the Boolean value of the specified condition(s). If the condition is TRUE, NOT returns FALSE, and if the condition is FALSE, NOT returns TRUE.

Usage

This function is used to invert the Boolean value of one or more conditions.

Syntax:
NOT(condition1, condition2, [condition3], …)

Examples

  1. Check if a State is Not "Complete":
    NOT(#[State] = "Complete")
    
    Returns TRUE if the State is not "Complete"; otherwise, it returns FALSE.

Inputs

Argument Data Type Description
condition1 Boolean The first condition to invert.
condition2 Boolean The second condition to invert.
[condition3] Boolean (Optional) Additional conditions to invert.

Returns

Type: Boolean

  • Produces the inverted Boolean value of the specified condition(s).
Was this article helpful?
0 out of 0 found this helpful