Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
BL
 
Posts: n/a
Default Compound Rate Function

Hi, there,

I am looking for a function to calculate the compound rate for a annual
payment which can give a total amount of $ in a given period.

P = Annual Payment
R = Interest rate
N = the total of year
$ = Total

so P + P*(1+R) + P*(1+R)^2 + P*(1+R)^3 + ...P*(1+R)^n = $

e.g. What is the growth rate required for an initial payment of $100
required to get total $610.51 payment in 5 years? the answer to this question
is 10% as

$100 +$100*(110%)^1+$100*(110%)^2+$100*(110%)^3+$100*(1 10%)^4 = $610.51

I search but I cannot find the function required. Please help.

Thank you.

BL
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Take a look at the RATE() function


In article ,
"BL" wrote:

Hi, there,

I am looking for a function to calculate the compound rate for a annual
payment which can give a total amount of $ in a given period.

P = Annual Payment
R = Interest rate
N = the total of year
$ = Total

so P + P*(1+R) + P*(1+R)^2 + P*(1+R)^3 + ...P*(1+R)^n = $

e.g. What is the growth rate required for an initial payment of $100
required to get total $610.51 payment in 5 years? the answer to this question
is 10% as

$100 +$100*(110%)^1+$100*(110%)^2+$100*(110%)^3+$100*(1 10%)^4 = $610.51

I search but I cannot find the function required. Please help.

Thank you.

BL

  #3   Report Post  
BL
 
Posts: n/a
Default

Thank JE,

Unfortunately, the RATE() Function requires the PV as input key, I am
looking the rate to discount the amount to PV. Any other suggestion? I am
building up a table and use the Goal Seek Function of Excel to help me find
the rate; however, the process is time-consuming.

BL

"JE McGimpsey" wrote:

Take a look at the RATE() function


In article ,
"BL" wrote:

Hi, there,

I am looking for a function to calculate the compound rate for a annual
payment which can give a total amount of $ in a given period.

P = Annual Payment
R = Interest rate
N = the total of year
$ = Total

so P + P*(1+R) + P*(1+R)^2 + P*(1+R)^3 + ...P*(1+R)^n = $

e.g. What is the growth rate required for an initial payment of $100
required to get total $610.51 payment in 5 years? the answer to this question
is 10% as

$100 +$100*(110%)^1+$100*(110%)^2+$100*(110%)^3+$100*(1 10%)^4 = $610.51

I search but I cannot find the function required. Please help.

Thank you.

BL


  #4   Report Post  
Ron Coderre
 
Posts: n/a
Default

Actually, I believe JE is correct is suggesting the RATE function:

A1: RATE =RATE(A4,A3,A2,A5,A6)---Which calcs to 10%
A2: PV 0
A3: PMT -100
A4: TERM 5
A5: FV 610.51
A6: TYPE 0

--
Regards,
Ron
  #5   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Huh? You give the PV in your problem statement!

Your example shows an initial payment (PV) of $100, compounded for 4
years, with subsequent annual $100 payments at the end of each period,
compounding annually.

You can either model that as

=RATE(4,100,100,-610.51,0) === 10%

or, use a PV of 0 and stretch the period to 5 years:

=RATE(5,100,0,-610.51,0) === 10%

In neither case is the PV unknown.

In article ,
"BL" wrote:

Unfortunately, the RATE() Function requires the PV as input key, I am
looking the rate to discount the amount to PV. Any other suggestion? I am
building up a table and use the Goal Seek Function of Excel to help me find
the rate; however, the process is time-consuming.

BL

"JE McGimpsey" wrote:

Take a look at the RATE() function


In article ,
"BL" wrote:

Hi, there,

I am looking for a function to calculate the compound rate for a annual
payment which can give a total amount of $ in a given period.

P = Annual Payment
R = Interest rate
N = the total of year
$ = Total

so P + P*(1+R) + P*(1+R)^2 + P*(1+R)^3 + ...P*(1+R)^n = $

e.g. What is the growth rate required for an initial payment of $100
required to get total $610.51 payment in 5 years? the answer to this
question
is 10% as

$100 +$100*(110%)^1+$100*(110%)^2+$100*(110%)^3+$100*(1 10%)^4 = $610.51

I search but I cannot find the function required. Please help.



  #6   Report Post  
BL
 
Posts: n/a
Default

You are right, the RATE() works exactly what I need. Thank you very much for
your time in explaining to me.

BL

"JE McGimpsey" wrote:

Huh? You give the PV in your problem statement!

Your example shows an initial payment (PV) of $100, compounded for 4
years, with subsequent annual $100 payments at the end of each period,
compounding annually.

You can either model that as

=RATE(4,100,100,-610.51,0) === 10%

or, use a PV of 0 and stretch the period to 5 years:

=RATE(5,100,0,-610.51,0) === 10%

In neither case is the PV unknown.

In article ,
"BL" wrote:

Unfortunately, the RATE() Function requires the PV as input key, I am
looking the rate to discount the amount to PV. Any other suggestion? I am
building up a table and use the Goal Seek Function of Excel to help me find
the rate; however, the process is time-consuming.

BL

"JE McGimpsey" wrote:

Take a look at the RATE() function


In article ,
"BL" wrote:

Hi, there,

I am looking for a function to calculate the compound rate for a annual
payment which can give a total amount of $ in a given period.

P = Annual Payment
R = Interest rate
N = the total of year
$ = Total

so P + P*(1+R) + P*(1+R)^2 + P*(1+R)^3 + ...P*(1+R)^n = $

e.g. What is the growth rate required for an initial payment of $100
required to get total $610.51 payment in 5 years? the answer to this
question
is 10% as

$100 +$100*(110%)^1+$100*(110%)^2+$100*(110%)^3+$100*(1 10%)^4 = $610.51

I search but I cannot find the function required. Please help.


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
MIRR Function sensitivity to Finance Rate SongBear Excel Worksheet Functions 2 June 27th 05 09:09 PM
Date & Time mully New Users to Excel 4 May 23rd 05 11:56 AM
Possible Variable in Rate Function Cardin Smith Excel Worksheet Functions 0 May 19th 05 10:31 AM
Automatically up date time in a cell Mark Excel Discussion (Misc queries) 5 May 12th 05 12:26 AM
clock Wildman Excel Worksheet Functions 2 April 26th 05 10:31 AM


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

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"