compound annual growth rate

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
This will give you Compound Interest, is that what you need?
= Principle*(1 + Interest Rate/12)^(number months)

If you put your starting amount in B2, your Interest rate in C2, and the months in D2.you could put this in E2
=B2*(1+(C2/12))^D2
This message was edited by Paul B on 2002-08-18 10:53
 
Upvote 0
Paul

Thanks, but interest rate is the unknown.

I need to calculate the rate that yields a final value of Vn after n periods, given an initial value of Vo
 
Upvote 0
Try

Power(Vn/Vo;1/n)-1

where n are the number of periods.
You could use as well the ^ but i have problems with that.
tell me if OK
bye
 
Upvote 0
Howdy, sounds like you want to use:

=IRR()

Against your timeline of cashflows. With multiple changes in positive to negative there are the same number of correct mathematical soltuions, as discussed:

http://www.mrexcel.com/board/viewtopic.php?topic=9367&forum=2

Edit: Are you plugging rates or cfs?
_________________
Cheers,<font size=+2><font color="red"> Nate<font color="blue"> Oliver</font></font></font>
This message was edited by NateO on 2002-08-18 11:50
 
Upvote 0
I dont think IRR works when you have only positive numbers.

bye

Yeah this is right, I had a little trouble determining what we were attempting to accomplish here. The IRR should return your annual growth rate on dollars invested in a project. If you just want to look a stream of numbers and determine the compounding growth, perhaps the following example will help. If you click on cell g17, it'll show the formula that I'm familiar with:
Book2
ABCDEFGH
3Example
4
5YearRevenuesNetRevenueAnnualGrowth
60$2001990$200
71$2201991$22010.0%
82$2421992$24210.0%
93$2661993$26610.0%
104$2931994$29310.0%
115$3221995$32210.0%
126$3541996$35410.0%
137$3901997$39010.0%
148$4291998$42910.0%
159$4721999$47210.0%
16
17Growth10.0%No.ofperiods:910.0%CAGRcalculation
18
MrExcel Example
 
Upvote 0
CAGR and IRR are not the same. You can do a search on the internet and get an explanation of CAGR. The basic formula is as follows:

Say C1 is total sales for period 1, E1 is total sales for period 3. To find Cagr for 2 year period see below:

(E1/C1)^(1/2)-1=CAGR
 
Upvote 0
On 2002-08-19 08:22, shergenr wrote:
CAGR and IRR are not the same. You can do a search on the internet and get an explanation of CAGR. The basic formula is as follows:

Say C1 is total sales for period 1, E1 is total sales for period 3. To find Cagr for 2 year period see below:

(E1/C1)^(1/2)-1=CAGR

This is correct, the formula you've used is very similar to the one in g17 above.

Here's a udf that may make this a little easier:<pre>
Public Function CAGR(ByVal myRng As Range) As Double
Dim Fst As String, Lst As String, pos As Single, TmpVal As Double
Application.Volatile
pos = InStr(myRng.Address(False, False), ":")
Lst = Mid(myRng.Address(False, False), pos + 1, _
Len(myRng.Address(False, False)))
Fst = Left(myRng.Address(False, False), pos - 1)
CAGR = ((Range(Lst) / Range(Fst)) ^ (1 / (myRng.Count - 1))) - 1
End Function</pre>

Now just use the following

=cagr(h6:h15)

In the example I provided. Format the cell appropriately.

_________________
Cheers,<font size=+2><font color="red"> Nate<font color="blue"> Oliver</font></font></font>
This message was edited by NateO on 2002-08-19 08:39
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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