Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default Finding Annual Growth Rate

Hi

Could someone advise, on finding annual growth rate equation.

Example is:-

An X items was valued at 13500 and after 24 Years it is
valued at 180000.

The equation shall forecast, Annual Growth Rate in %.
( which means, value X grown over by Y % ( which shall be static value )
and another addition of Y for next year and so on till 24th year.

And shall not forecast % to its base value ( 13500 ), which I had figured
out to be at 51.38% for 24 years.

Hope someone really understands,

Bye.

Assad


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,440
Default Finding Annual Growth Rate

Hi Assad,

=RATE(24,,-13500,180000)

Kind regards,

Niek Otten
Microsoft MVP - Excel

"Assad" wrote in message ...
| Hi
|
| Could someone advise, on finding annual growth rate equation.
|
| Example is:-
|
| An X items was valued at 13500 and after 24 Years it is
| valued at 180000.
|
| The equation shall forecast, Annual Growth Rate in %.
| ( which means, value X grown over by Y % ( which shall be static value )
| and another addition of Y for next year and so on till 24th year.
|
| And shall not forecast % to its base value ( 13500 ), which I had figured
| out to be at 51.38% for 24 years.
|
| Hope someone really understands,
|
| Bye.
|
| Assad
|
|


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default Finding Annual Growth Rate

"Assad" wrote:
Could someone advise, on finding annual growth rate equation.
Example is:-
An X items was valued at 13500 and after 24 Years it is
valued at 180000.
The equation shall forecast, Annual Growth Rate in %.
( which means, value X grown over by Y % ( which shall be static value )


=rate(24, 0, -13500, 180000)

(11.4% per year.)

and another addition of Y for next year and so on till 24th year.


This part of your question is unclear. If you are asking for a formula that
will give you "Y", that cannot be done unless you first know the compound
growth rate. But if you are asking how to compute the compound growth rate
given some "Y" -- for example, 2000 -- then:

=rate(24, -2000, -13500, 180000)

(6.84% per year.)

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Finding Annual Growth Rate

Thanks - this was helpful to me too, five months later.

Can you explain to me, however, why the third argument in this function has
to be entered as a negative number?

There must be a finance-related reason, but I'm using this formula to
calculate an average GDP growth rate over a period of time, and it's highly
counter-intuitive (and therefore hard to teach) that one needs to make the
GDP in the base year negative.

thanks, -

Thomas Hastings


" wrote:

"Assad" wrote:
Could someone advise, on finding annual growth rate equation.
Example is:-
An X items was valued at 13500 and after 24 Years it is
valued at 180000.
The equation shall forecast, Annual Growth Rate in %.
( which means, value X grown over by Y % ( which shall be static value )


=rate(24, 0, -13500, 180000)

(11.4% per year.)

and another addition of Y for next year and so on till 24th year.


This part of your question is unclear. If you are asking for a formula that
will give you "Y", that cannot be done unless you first know the compound
growth rate. But if you are asking how to compute the compound growth rate
given some "Y" -- for example, 2000 -- then:

=rate(24, -2000, -13500, 180000)

(6.84% per year.)



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Finding Annual Growth Rate

Money has a sign because it can flow in one of two ways. Generally we use +
for money coming at us (a loan from the bank, interested received on a
saving account, etc) and a negative sign (-) for money leaving us (payment
made on a loan, taxes paid (you do pay taxes, I hope), deposits to a savings
account, etc)
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Thomas Hastings" <Thomas wrote in
message ...
Thanks - this was helpful to me too, five months later.

Can you explain to me, however, why the third argument in this function
has
to be entered as a negative number?

There must be a finance-related reason, but I'm using this formula to
calculate an average GDP growth rate over a period of time, and it's
highly
counter-intuitive (and therefore hard to teach) that one needs to make the
GDP in the base year negative.

thanks, -

Thomas Hastings


" wrote:

"Assad" wrote:
Could someone advise, on finding annual growth rate equation.
Example is:-
An X items was valued at 13500 and after 24 Years it is
valued at 180000.
The equation shall forecast, Annual Growth Rate in %.
( which means, value X grown over by Y % ( which shall be static
value )


=rate(24, 0, -13500, 180000)

(11.4% per year.)

and another addition of Y for next year and so on till 24th year.


This part of your question is unclear. If you are asking for a formula
that
will give you "Y", that cannot be done unless you first know the compound
growth rate. But if you are asking how to compute the compound growth
rate
given some "Y" -- for example, 2000 -- then:

=rate(24, -2000, -13500, 180000)

(6.84% per year.)



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default Finding Annual Growth Rate

On Jun 8, 8:47 am, Thomas Hastings <Thomas
wrote:
Can you explain to me, however, why the third argument
in this function has to be entered as a negative number?


Inflows and outflows must have opposite signs. But whether you use
plus for in and minus for out, or vice versa, is a matter of taste and
sometimes context.

Most people use plus for inflows and minus for outflows. Hopefully
that does not seem "highly counter-intuitive" to you. But note that
in that case, lenders and borrowers, for example, would choose
different signs.

I usually assign plus and minus so that the Excel function returns a
non-negative value. (Except when my spreadsheet design reflects
positive and negative values.) So I would write the functions the
same way whether I am a lender or borrower. But I still must be
consistent with respect to the sign of inflows and outflows.

There must be a finance-related reason


It is really more of an algebraic reason, and now a computer
programming reason. I have never heard a financial person speak of a
loan as -$100,000 ;-.

(A bookkeeper might. But again, whether it is a negative or positive
value depends on the type of the account.)

but I'm using this formula to
calculate an average GDP growth rate over a period of time, and it's highly
counter-intuitive (and therefore hard to teach) that one needs to make the
GDP in the base year negative.


Think of it this way: you are "paying" (investing) the present value
and "receiving" (growing to) the future value. Thus, PV can be
thought of as an outflow, and FV can be thought of as an inflow.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Finding Annual Growth Rate


Think of it this way: you are "paying" (investing) the present value
and "receiving" (growing to) the future value. Thus, PV can be
thought of as an outflow, and FV can be thought of as an inflow.


thanks - helpful again, especially this last bit here.


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
growth rate but not average kotlon Excel Discussion (Misc queries) 1 June 19th 06 11:09 AM
annual growth rate from monthly data kotlon Excel Discussion (Misc queries) 4 June 16th 06 08:56 PM
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 07:14 AM.

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

About Us

"It's about Microsoft Excel"