ABS(number)
=ABS(-3)
This Sourcetable formula returns the absolute value of a negative number. This example returns 3. This is because the absolute value of -3 is 3, regardless of its sign.
This Sourcetable formula returns the absolute value of a positive number. In this example, =ABS(5) returns 5. This is because the absolute value of 5 is 5, regardless of its sign.
This Sourcetable formula returns the absolute value of a number. In this example, =ABS(0) returns 0. This is because the absolute value of 0 is 0, regardless of its sign.
This Sourcetable formula returns the absolute value of the difference between two numbers. In this example, =ABS(B1-A1) returns the absolute value of the difference between B1 and A1. This is useful for finding the distance between two numbers, regardless of the sign.
The ABS function returns the absolute value of a real number argument by removing its sign. It is required to provide a real number argument to get the absolute value.