The ABS function in Google Sheets is a simple yet powerful tool that allows users to obtain the absolute value of a number. By removing any negative sign, this function ensures that the value is always non-negative, making it particularly useful for mathematical calculations, statistical analyses, and data manipulation where the magnitude of values is important without regard for their direction.
Syntax
ABS(value)
- value: This is the numeric input for which you want to find the absolute value. It can be a reference to a cell containing a number or a direct numeric value.
Example #1
ABS(-42)
This function call returns the absolute value of -42, which is 42.
Example #2
ABS(25)
In this case, the function evaluates the absolute value of 25, resulting in 25 since it’s already positive.
Example #3
ABS(A1)
Assuming cell A1 contains the value -15, this function will return 15, the absolute value of the number in that cell.
Error handling
- VALUE!: This error occurs when the input is not a valid number or reference. Ensure that you provide a numeric value or a cell reference containing a number.
- NUM!: This error is thrown if the argument is larger than the maximum allowed value for the function. Adjust the input to be within allowable numeric limits.