Understanding Geometric Mean in Excel: GEOMEAN vs. AVERAGE Explained

Understanding Geometric Mean in Excel: GEOMEAN vs. AVERAGE Explained

The geometric mean is a statistical measure that uses multiplication instead of addition to calculate the central tendency of a set of numbers. While most Excel users are familiar with the AVERAGE function, the GEOMEAN function is often the better choice when working with growth rates, investment returns, and other multiplicative data.

Let's look at three practical examples comparing the arithmetic mean (AVERAGE) and the geometric mean (GEOMEAN) in Excel to see when and why the geometric mean gives a more accurate result.

Geometric Mean vs. Arithmetic Mean

The arithmetic mean adds all values and divides by the count. The geometric mean multiplies all values and takes the nth root. For numbers that grow proportionally (like percentages, returns, or population data), the geometric mean provides a more representative average.

Excel's GEOMEAN function syntax is straightforward:

=GEOMEAN(number1, [number2], ...)

Example 1: Basic Calculation with Skewed Data

Consider the values 10, 100, 1,000, 10,000, and 100,000. These numbers span several orders of magnitude — a common scenario in real-world data.

Start by calculating the arithmetic mean using the AVERAGE function:

Excel showing =AVERAGE(A2:A6) in the formula bar, returning 22,222 in cell A8, with data values 10 through 100,000 in column A
=AVERAGE(A2:A6) returns 22,222 — heavily skewed toward the larger values in the dataset

Next, the PRODUCT function shows what happens when you multiply all five values together:

Excel showing =PRODUCT(A2:A6) in the formula bar returning 1,000,000,000,000,000 in cell B9, with the PRODUCT function syntax overlay at the bottom
=PRODUCT(A2:A6) returns 1 quadrillion — the product of all five values, which GEOMEAN uses internally

The geometric mean is the nth root of that product. You can verify this manually with the formula =B9^(1/5):

Excel showing =B9^(1/5) in the formula bar, returning 1,000.00 in cell B10, demonstrating the manual nth root calculation
=B9^(1/5) takes the 5th root of the product, returning exactly 1,000 — the geometric mean

Here's the complete side-by-side comparison for Example 1:

  • AVERAGE returns 22,222 — heavily pulled toward the larger values
  • PRODUCT returns 1,000,000,000,000,000 (the product of all five numbers)
  • GEOMEAN returns 1,000 — the fifth root of that product
Excel showing all three results: A8=22,222 (AVERAGE), B8=22,222, B9=1 quadrillion (PRODUCT), B10=1,000.00 (GEOMEAN), with data values 10 through 100,000
Complete comparison: AVERAGE (22,222), PRODUCT (1 quadrillion), and GEOMEAN (1,000) for the same dataset

The geometric mean of 1,000 sits right in the middle of the logarithmic scale (10, 100, 1,000, 10,000, 100,000), which makes it a far better measure of central tendency for this type of data than the arithmetic mean of 22,222.

Example 2: Employee Task Duration

For a second example, consider employee task completion times: 7, 6, 150, 98, 6, 15, and 20 minutes. Notice the outliers — 150 and 98 minutes are much higher than the rest.

Excel showing employee task durations (7, 6, 150, 98, 6, 15, 20) in column I with AVERAGE=43.1429 and GEOMEAN=19.6003 calculated below
Employee task times with two large outliers: AVERAGE (43.14 min) vs. GEOMEAN (19.60 min)
  • AVERAGE returns 43.14 minutes — skewed upward by the 150 and 98 outliers
  • GEOMEAN returns 19.60 minutes — better represents the typical employee

The geometric mean of 19.60 better represents the typical task duration since most employees finished in under 20 minutes. The arithmetic mean is misleadingly high because of just two outliers.

Example 3: Financial Investment Returns

This is where the geometric mean truly matters. Starting with a $1,000 investment over 5 years with varying annual returns (110%, 88%, 190%, 70%, 125%):

Excel showing financial investment returns over 5 years: D9=117% (AVERAGE), D10=109.98% (GEOMEAN), with actual investment values in column E growing from 1,000 to 1,609
AVERAGE return (117%) vs. GEOMEAN return (109.98%), with actual year-by-year investment values in column E
  • AVERAGE return: 117% — suggesting the investment grew 17% per year on average
  • GEOMEAN return: 109.98% — the actual average annual growth rate

To prove this, calculate the actual investment value year by year in column E. After 5 years, the $1,000 grows to $1,609. Column F compounds the starting $1,000 at the geometric mean rate of 109.98% each year:

Excel showing columns E (actual investment: 1000, 1100, 968, 1839, 1287, 1609) and F (geometric growth: 1000, 1099.83, 1209.64, 1330.40, 1463.22, 1609.30) arriving at the same final value
Actual growth (column E) vs. geometric mean growth (column F) — both arrive at $1,609, proving the geometric mean is the true average return

If you compound at the arithmetic average of 17% per year, you'd predict a different (incorrect) ending value. Compounding at the geometric mean of 9.98% per year gives you exactly $1,609.30 — matching the actual result. This is why financial analysts use the geometric mean for calculating financial ratios and average returns. The arithmetic mean overstates compound growth.

When to Use Each Function

  • AVERAGE — Use for data that is additive: test scores, temperatures, simple averages where values don't compound
  • GEOMEAN — Use for data that is multiplicative: growth rates, investment returns, ratios, indices, data spanning orders of magnitude

A quick rule of thumb: if your data involves percentages, rates of change, or values that multiply together over time, reach for GEOMEAN instead of AVERAGE.

For more on working with financial functions like Future Value in Excel, or to explore statistical functions like COUNTIF, check out the related tutorials.

Want to learn more? Visit courses.chrismenardtraining.com for online training courses.

Excel AVERAGE excluding the highest and lowest values | TRIMMEAN Function
When you have a range of numbers in Excel and want to figure out the AVERAGE but you have some extreme values that can skew your averages, there is a function that helps solve that problem. **Average using Sum with Max, Min, and Count** You can calculate the AVERAGE in Excel using the TRIMMEAN function, which will allow you to exclude lowest or highest values from being considered for the averages. Further, you can exclude one or more highest/lowest values in your range, by specifying how many
Average Function in Excel
The AVERAGE function is one of the most popular functions in Excel. This video shows how to use the Average function, handles zero values when using the Average function. Zero values vs. blank cells will give different results with Average. As a bonus, using the AverageIF function with zero values. The Average Function returns the average (arithmetic mean) of the arguments. For example, if the range B2:B20 contains numbers, the formula =AVERAGE(B2:B20) returns the average of those numbers. Sy
Financial Ratios - Formula Completion in Excel using Copilot
Writing formulas in Excel can be time-consuming and challenging, even for experienced users. Selecting the right function, referencing the correct cells, and ensuring proper syntax often slows down workflows and leads to errors. Many users spend extra time troubleshooting mistakes, searching for examples, or trying to recall the exact formula structure. Formula completion in Excel, powered by advanced AI, solves these challenges by suggesting and autocompleting formulas as soon as you type “=”.
Count Unique Values in Excel with UNIQUE, SORT, and COUNTIF Functions Tutorial
Table of Contents * 📋 Why this method works and when I use it * 📋 Setting up the table * 🔎 Extract distinct values with UNIQUE * ↕️ Sort the unique list with SORT * 🔢 Count occurrences using COUNTIF * ✅ Why tables beat ranges for this task * 🔁 When to use this instead of a pivot table * 🔧 Quick checklist to implement this * ❓ Frequently asked questions * 📌 Final tips 📋 Why this method works and when I use it I often need a quick way to show how many times each item appears