Mendix 7 is no longer supported unless you have Extended Support (for details, please contact Mendix Support). Mendix 7 documentation will remain available for customers with Extended Support until July, 2024.

Boolean expressions

Last modified: August 2, 2022

Boolean expressions

Boolean expressions can be used to perform logical operations such as checking if two conditions hold.

and

Combines two Boolean expressions and only returns True if both of the expressions evaluate to True.

or

Combines two Boolean expressions, and returns True if at least one of the expressions evaluates to True.

not

The function ’not’ negates the specified Boolean expression.

Input

An expression of type Boolean.

Output

Returns the negation of the specified expression. If the expression evaluates to True, it returns False; otherwise it returns True.