IS_BLANK

Description

Returns TRUE if the value is blank (NULL, empty, or contains only whitespace); otherwise, returns FALSE.

Syntax

IS_BLANK(value) -> Boolean

Parameters

ParameterData TypeRequiredDescription
valueObjectYesThe value to evaluate.

Example

IS_BLANK(Email)
-- Returns TRUE if Email is NULL, empty or contains only whitespace characters.