Abs() Function
- Last UpdatedFeb 21, 2017
- 1 minute read
Returns the absolute value of a specified number. You can use this to convert a negative number to a positive number.
Syntax
result = Abs (number)
Parameters
number
A literal number, analog tagname, or numeric expression.
Example(s)
Abs(14) returns 14.
Abs(-7.5) returns 7.5.