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
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| value | Object | Yes | The value to evaluate. |
Example
SKIP_BLANK_VALUE(AccountId)
-- Returns $SKIP_ASSIGNMENT if AccountId is blank; otherwise, returns AccountId.