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

Open navigation

ISNULL Function

Applies from Version:WEBcnx 2024.1Applies to Version:


Description

The ISNULL function checks if its parameter is equal to "Null" - i.e. an empty value.


Syntax 

ISNULL(value)


The ISNULL function has the following argument:

  • value Required. The value to check.

Returns

A Boolean. True if the parameter has a null value, false if not.


Remarks

  1. This is the same as calling MyExpressionValue.IsNull, but the advantage of using ISNULL is that it covers all parameter types, even those that do not support the .IsNull syntax.


Examples 

Imagine we have a String field MyString

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