NOT Function

  • 21 December 2021
  • 0 replies
  • 377 views

Userlevel 5
Badge +3

 

Description

Inverts the result of a given logical expression.

 

Syntax

NOT logical

 

Return type

Boolean (TRUE or FALSE)

 

 

Examples

 

Case

Results

Return Type

NOT TRUE

FALSE

boolean

NOT country.hasSeaBoarder

TRUE when the boolean property hasSeaBoarder of a country list is FALSE

boolean

NOT Month.Quarter.'Quarter of Year' = "Q1"

TRUE for all non Q1 months

boolean

 


Excel equivalent: NOT(logical)

See also: AND, OR, IN

 

 


This topic has been closed for comments