IsEmpty

The IsEmpty() function checks whether the input parameter is empty.

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

Syntax

IsEmpty(parameter)

IsEmpty( "1" ) => False

IsEmpty(unknownnumber) => True

IsEmpty( "" ) => True

IsEmpty( " " ) => False

IsEmpty( '' ) => False

IsEmpty( {} ) => True

IsEmpty( [List WithRows] ) => False

IsEmpty( [List WithNoRows] ) => True

Parameters

Name
Type
Required
Description

parameter

any

☑️

Field that is checked for a value

Last updated

Was this helpful?