Average Growth Rate (CAGR) Calculator
Calculate the Compound Annual Growth Rate for any timeframe
How to Calculate Average Growth Rate in Excel
Calculating the average growth rate is essential for understanding performance over time, whether you are analyzing business revenue, stock prices, or website traffic. In Excel, the most accurate way to calculate this is using the Compound Annual Growth Rate (CAGR) formula.
Method 1: Using the RRI Function (Simplest)
The RRI function returns an equivalent interest rate for the growth of an investment. It is the most direct way to find the average growth rate in modern versions of Excel.
- nper: The number of periods (years, months, etc.).
- pv: The present value (starting amount).
- fv: The future value (ending amount).
Method 2: The Manual Formula
If you prefer to understand the math behind the calculation, you can use the mathematical formula for CAGR directly in a cell:
Example Scenario
Suppose you had the following data:
| Data Point | Value |
|---|---|
| Initial Users (2018) | 10,000 |
| Current Users (2023) | 25,000 |
| Time Elapsed | 5 Years |
The Excel formula would be =RRI(5, 10000, 25000), which results in 20.11%. This means your user base grew by an average of 20.11% every year for five years.
Important Tips
- Ensure your Starting Value is never zero, as this will cause a
#NUM!or#DIV/0!error. - The number of periods should be the total gaps between data points (e.g., from 2020 to 2025 is 5 periods, even though there are 6 years of data).
- Format the result cell as a "Percentage" in Excel for easier reading.