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

Open navigation

ISNOTNULL Function

Applies from Version:WEBcnx 2024.1Applies to Version:


Description

The ISNOTNULL function checks if a parameter is not equal to "Null". In short, it returns the opposite value to ISNULL.


Syntax 

ISNOTNULL(value)


The ISNOTNULL function has the following argument:

  • value Required. The value to check.

Usage

This function takes one parameter of any type

Returns

A Boolean. False if the parameter has a null value, true if not.


Remarks

  1. This is the same as calling MyExpressionValue.IsNotNull or NOT(MyExpressionValue.IsNull), but the advantage of using ISNOTNULL() is that it covers all parameter types, even those that do not support the .IsNull and .IsNotNull syntax.


Examples 

Imagine we have a String field MyString

ExpressionDescriptionResult
ISNOTNULL("Hello")Determines whether the string "Hello" is not nullTrue
ISNOTNULL(MyString)Determines whether the MyString field is not nullTrue 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 -