WEBcnx 2023.2 is out now bringing with it a host of new features and performance enhancements. Read more.

Open navigation

NOT Function

Applies from Version:WEBcnx 2024.1Applies to Version:


Description

The NOT function returns the opposite value of a Boolean parameter.


Syntax 

NOT(bool)


The NOT function has the following argument:

  • bool Required. The boolean value we want to invert.

Returns

A Boolean


Remarks

  1. Returns True if its parameter evaluates to false, false if its parameter evaluates to true.


Examples

Imagine we have two distance fields in an Item Type, with the identifiers Height and Width.

ExpressionDescriptionResult
NOT(True)Checks if True is not true
False
NOT(False)
Checks if False is not true
True
NOT(Height.IsNull)
Checks if Height has a value
True if Height has a value, False if not
NOT(Width > 10)
Checks if Width is 10 or lower
True or False, depending on Task Values


Further Reading

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.

You may like to read -