View Single Post
  #1   Report Post  
John87111
 
Posts: n/a
Default


"Ajit Munj" wrote:

What is formula for CAGR (Compounded Annual Growth Rate)? e.g. if I take
a unit of Rs.10/- the price of which increases to Rs.13/- after 3 years, what
is the CAGR? Is there any readymade function to calculate CAGR in Excel?
Ajit
--
Knowldege is Power



Ajit, try this formula:

=+(E3/B3)^(1/(COUNT(B3:E3)-1))-1

Where E3 is the last year for your CAGR calc & B3 is the beginning year.
The count function will determine the number of years the CAGR is based on.
It is derived from the following equation:

CAGR = (Ct /C0)(1/t)-1
In other words for a 3 year CAGR take the value in year three and divide by
the value in year zero. Then take that result and raise it to the 1/3 power.
Then subtract one.

I hope this helps! John