Abs
abs
Returns the absolute value of the input.
Spec
abs(arg0) Parameters
arg0 - A numeric value. Return Value
The absolute value of arg0 as a double. Example
datatable(val:double)[-5.5, 3.0]
| extend result = abs(val) | val | result |
|---|---|
| -5.5 | 5.5 |
| 3.0 | 3.0 |