IS_SET
Test if an item has a value; 0, False, None, null and such would return 0, everything else 1
Example Usage
IS_SET(Exempt) // 0, '0', None, 'None', 'false', False return 0, most everything else returns 1
Overview
Function signature
IS_SET(value)
Category
Logical
Return data type
bool
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | None | The item to test for a value (non zero) |