ABS
Calculates the absolute value of the specified number.
Syntax
=ABS(value)
Arguments
Argument | Type | Description |
---|---|---|
value | Number | The value to calculate the absolute value of |
Examples
=ABS(4.5)
→4.5
Calculates the absolute value of 4.5
=ABS(-1)
→1
Calculates the absolute value of -1
=ABS(@"Property 1")
→123
Calculates the absolute value of the shape data property "Property 1", which has the value -123
Updated 9 months ago