SKIP_BLANK_VALUE

Description

Returns the provided value if it is not blank. If the value is blank (null, empty, or whitespace), returns $SKIP_ASSIGNMENT.

Syntax

SKIP_BLANK_VALUE(value) -> Object

Parameters

ParameterData TypeRequiredDescription
valueObjectYesThe value to evaluate.

Example

SKIP_BLANK_VALUE(AccountId)
-- Returns $SKIP_ASSIGNMENT if AccountId is blank; otherwise, returns AccountId.