IsEmpty

This function will check if specified field contains empty value.

Syntax

IsEmpty("fieldName");

Function arguments

  • fieldName – (String) Name of the field containing value to be checked.

Return value

This function returns Boolean. Returns true if specified field has no (empty) value

Examples

Example 1: This will check if 'Amount’ field is empty and store return value in 'fieldStatus’ variable.

fieldStatus = IsEmpty("Amount");