The GEOMEAN function in Google Sheets is a powerful statistical tool used to calculate the geometric mean of a set of numeric values. The geometric mean is particularly useful in situations where the average of multiplicative processes is required, such as in finance or population studies, as it provides a more accurate measure of central tendency than the arithmetic mean when dealing with skewed distributions.
Syntax
GEOMEAN(value1, [value2, ...])
- value1: The first number or range of numbers to include in the geometric mean calculation.
- value2: Optional additional numbers or ranges to include in the calculation.
Example #1
=GEOMEAN(2, 8)
This function computes the geometric mean of 2 and 8, resulting in 4.0, which reflects the central tendency of these two values multiplicatively.
Example #2
=GEOMEAN(A1:A5)
In this example, the function calculates the geometric mean of the data in cells A1 through A5. If A1 to A5 contains the values 1, 3, 9, 27, and 81, the result will be 9, demonstrating the average growth rate of the series.
Example #3
=GEOMEAN(5, 15, 45)
Here, the function calculates the geometric mean of 5, 15, and 45, resulting in approximately 15, which provides insight into the product of these three numbers adjusted for their scale.
Error handling
- NUM!: This error occurs if any of the arguments are non-positive numbers, as the geometric mean is not defined for those values.
- VALUE!: This error indicates that one or more of the inputs is not a number. Ensure all arguments are numeric or valid references to numeric cells.