CAGR from a series of annual growth rates

mgranalyst

New Member
Joined
Sep 24, 2013
Messages
1
Hi all. Can someone please tell me whether an excel formula exists to calculate a compound annual growth rate from a series of annual growth rates. For example, I have annual growth rates for ten years of the following:

3.0% 2.9% 2.7% 2.7% 2.7%2.6% 2.4% 2.5% 2.7% 2.8%

If I calculate this long-handed the CAGR would be 2.7%.

Please assist.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
One way to do this:

1. Add helper row with
Code:
=1 + A1
2. Use formula
Code:
 =PRODUCT(A2:J2) ^ (1 / COUNT(A2:J2))

Another way (enter as array):
Code:
 =PRODUCT(1+A1:J1) ^ (1 / COUNT(A1:J1))

And there's probably plenty more :)

Cheers!
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top