This function returns the absolute value of a number without regards to its sign.
Abs( [Number] )
Where:
Number is the number to return the absolute value for.
Rule | Meaning |
---|---|
Abs(-488.9) | Uses the number -488.9 and returns its absolute value, which is 488.9. |
Abs(723) | Uses the number 723 and returns its absolute value, which is 723. |