The ABS function returns the absolute value of a number. The absolute value of zero or a positive number remains the same. The absolute value of a negative number is the same number without the negative sign (the positive version).

ABS(Number)

ArgumentData typeDescription
NumberNumberThe number to return the absolute value of.

The ABS function returns a number.

ABS

FormulaResult
ABS(-20)20
ABS(20)20
ABS(0)0