Core Functions
Core Functions
The CoreFormulaLibrary
class provides core logical functions.
Functions
IF
- Description: Evaluates a condition and returns one of two values based on the result.
- Parameters: 3 (Boolean, Any, Any)
- Usage:
IF(condition, trueValue, falseValue)
IFNULL
- Description: Returns a default value if the specified value is null.
- Parameters: 2 (Any, Any)
- Usage:
IFNULL(value, defaultValue)
ISNULL
- Description: Checks if a value is null.
- Parameters: 1 (Any)
- Usage:
ISNULL(value)