isnull() Function

Returns true if the value is null, and returns false otherwise, except as noted.

Syntax

isnull( value )

value: (Any Type) Value to check for null.

Returns

Boolean

Notes

Empty arrays return false when passed to the isnull() function.

The function will not work without a parameter. It is typically used to test whether a Process Variable contains a null value.

Examples

You can experiment with this function in the test box below.

Test Input

isnull(!userPV) returns true where userPV is a process variable of type User, which is null.

See Also

length(): Use the length() function instead when testing Multiple value variables.

Open in Github Built: Fri, Mar 11, 2022 (04:59:07 PM)

On This Page

FEEDBACK