Skip to main content
IS_EMPTY

Checks if a value or field is empty

Updated over a week ago

Description

IS_EMPTY() inspects a field or value and returns true if it's empty (blank or null). This function helps in handling missing or empty data.

Syntax

IS_EMPTY(arg)

Output

boolean

Variables

  1. arg: The field or value to check for emptiness.

Example

IS_EMPTY(`Arguement`)

Argument

IS_EMPTY

True

"Hello"

False

NULL

True

Did this answer your question?