ABS
Overview
Description  | Returns the absolute value for each value in the input node.  | 
Syntax  | ABS(Node)  | 
Parameter  | Node: Input node, specified using the node name in single quotes (e.g. 'Profit')  | 
Example
Input DecimalNode =
Year  | Value  | 
|---|---|
2019  | -24.5  | 
2020  | 95  | 
2021  | 0  | 
Output ABS('DecimalNode') =
Year  | Value  | 
|---|---|
2019  | 24.5  | 
2020  | 95  | 
2021  | 0  |