Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 43
Default calculating compound growth

Hi,

I have office 2003. I need an excel formula to calculate Average percentage
increase.
Example start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase received to go from 5000 to 10000 in
5 years. This needs to take compound growth into account
(the xirr formula does not work)

Please help

Johan Campbell

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default calculating compound growth

If you're saying 5 years, it's
=(10000/5000)^(1/5)-1 formatted as percentage.
--
David Biddulph

"Johan" wrote in message
...
Hi,

I have office 2003. I need an excel formula to calculate Average
percentage
increase.
Example start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase received to go from 5000 to 10000
in
5 years. This needs to take compound growth into account
(the xirr formula does not work)

Please help

Johan Campbell



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default calculating compound growth

The equation I use is:
=((y/x)^(1/n))-1
where
y= value in final year
x=value in 1st year
n=# of years
--
Thanks


"David Biddulph" wrote:

If you're saying 5 years, it's
=(10000/5000)^(1/5)-1 formatted as percentage.
--
David Biddulph

"Johan" wrote in message
...
Hi,

I have office 2003. I need an excel formula to calculate Average
percentage
increase.
Example start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase received to go from 5000 to 10000
in
5 years. This needs to take compound growth into account
(the xirr formula does not work)

Please help

Johan Campbell




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 161
Default calculating compound growth

Hi, both correct for integer years. Bit tricky with odd months. When using
periodic compounding, equation is: FV=PV*(1+i)^n*(1+i/f)
FV - future value, PV - present value, i - interest rate (annual in this
case), n - number of full years, f - fraction of year, in case of 1 odd month
this is 12, e.g. 1/12 of year. Extracting i needs itteration, that's why I
would use either goal seek or solver.
Using continuous compounding, equation is: FV=PV*e^(i*t)
e - Euler's constant, base of the natural log (approx. 2.718281), i - annual
interest rate, t - number of years (in this case 5 1/12, e.g. 61/12), when
logarithming, we can easy get i as: i=(ln(FV)-ln(PV))/t
N.B. i for periodic compounding is bigger than i when continuous compounding
(due to continous compounding). Btw, I guess IRR works pretty well. For 5
year, when i for continuous compounding is 10%, IRR function in Excel shows
9.9885%, less than 1.15 b.p. (baisis point - 1/100 p.c.) difference, in my
opinion really not too much. Just do not forget u have to input the initial
flow as negative when using IRR function.

HTH
Alojz

"dbsocal" wrote:

The equation I use is:
=((y/x)^(1/n))-1
where
y= value in final year
x=value in 1st year
n=# of years
--
Thanks


"David Biddulph" wrote:

If you're saying 5 years, it's
=(10000/5000)^(1/5)-1 formatted as percentage.
--
David Biddulph

"Johan" wrote in message
...
Hi,

I have office 2003. I need an excel formula to calculate Average
percentage
increase.
Example start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase received to go from 5000 to 10000
in
5 years. This needs to take compound growth into account
(the xirr formula does not work)

Please help

Johan Campbell




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 418
Default calculating compound growth

"Johan" wrote:
start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase


=rate(5,0,-5000,10000)

(the xirr formula does not work)


XIRR would be overkill for this problem. But it certainly does work, if you
use it correctly. The key is for one value to be negative and the other to
be positive, just I did in the RATE formula about. If A1 is -5000, A2 is
10000, B1 is 1/2/2004, and B2 is 3/3/2009, then:

=xirr(A1:A2,B1:B2)

The small difference between RATE and XIRR results is because XIRR is "more
accurate" -- probably too accurate for your purposes.


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 161
Default calculating compound growth

u r completely rite, I was trying to make bit expatiation so was later with
my post :-)

" wrote:

"Johan" wrote:
start wage 5000 current wage 10000
Start date 01/02/2004 (1st Feb) current date 03/03/2009 (3rd March)
length of service 5 years
What was the average annual % increase


=rate(5,0,-5000,10000)

(the xirr formula does not work)


XIRR would be overkill for this problem. But it certainly does work, if you
use it correctly. The key is for one value to be negative and the other to
be positive, just I did in the RATE formula about. If A1 is -5000, A2 is
10000, B1 is 1/2/2004, and B2 is 3/3/2009, then:

=xirr(A1:A2,B1:B2)

The small difference between RATE and XIRR results is because XIRR is "more
accurate" -- probably too accurate for your purposes.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Compound Average Annual Growth Rate PatJennings Excel Worksheet Functions 3 August 6th 08 02:24 AM
How to get compound annual growth rates in pivot tables. dunes Excel Worksheet Functions 2 February 3rd 07 12:31 AM
Compound Annual Growth Rate Stash Excel Discussion (Misc queries) 2 March 30th 05 07:49 PM
What formula do I use to calculate compound annual growth rate (C. pjbrien Excel Discussion (Misc queries) 0 March 23rd 05 08:39 PM
Compound annual growth rate [CAGR] Paul Excel Discussion (Misc queries) 2 March 17th 05 11:17 PM


All times are GMT +1. The time now is 04:49 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"