Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dr. Sachin Wagh
 
Posts: n/a
Default Compound Rate (again!)

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx
--
Dr. Sachin Wagh
MBBS, DHA, DPH
  #2   Report Post  
JE McGimpsey
 
Posts: n/a
Default

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx

  #3   Report Post  
Dr. Sachin Wagh
 
Posts: n/a
Default

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx


  #4   Report Post  
Bob Tarburton
 
Posts: n/a
Default


Hi
compound_return=(total_return)^(1/((date_final-date_initial)/365))-1
Where total_return=final_value/intitial_investment
Final value=5802
Initial investment=5000
final date =today() or your sell date

the trick is that the date_initial is a weighted average of the
investment dates. I
n this case where you deposit = amounts each time, it's a straight
average.

Remember, Excel treats your dates as a real number, so it's
straightforward:
date1*investment1
+date2*investment2
....
+date(n)*investment(n)
divided by
sum of investments



On Wed, 2 Mar 2005 10:53:04 -0800, Dr. Sachin Wagh
wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx



  #5   Report Post  
Myrna Larson
 
Posts: n/a
Default

The formula you were given isn't quite right. You need to use the 5th argument
to indicate the payment is made at the beginning of the year rather than the
end, i.e.

=RATE(5,-1000,0,5802,1) = 5%

On Wed, 2 Mar 2005 10:53:04 -0800, Dr. Sachin Wagh
wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx





  #6   Report Post  
Bob Tarburton
 
Posts: n/a
Default

Myrna got it.
Just wanted to note that all that jazz about weighted average in my
answer can be expressed as
date_initial=SUMPRODUCT(range_of_investment_dates: range_of_investment_values)/SUM(range_of_investment_values)

On Wed, 02 Mar 2005 15:03:52 -0500, Bob Tarburton
wrote:


Hi
compound_return=(total_return)^(1/((date_final-date_initial)/365))-1
Where total_return=final_value/intitial_investment
Final value=5802
Initial investment=5000
final date =today() or your sell date

the trick is that the date_initial is a weighted average of the
investment dates. I
n this case where you deposit = amounts each time, it's a straight
average.

Remember, Excel treats your dates as a real number, so it's
straightforward:
date1*investment1
+date2*investment2
...
+date(n)*investment(n)
divided by
sum of investments



On Wed, 2 Mar 2005 10:53:04 -0800, Dr. Sachin Wagh
wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx


  #7   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Oops - misedited without checking. Sorry!

=RATE(21,-2574,0,129635,1)




In article ,
Dr. Sachin Wagh wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years

  #8   Report Post  
Myrna Larson
 
Posts: n/a
Default

I think you have a typo the colon instead of comma, i.e. should be

date_initial=SUMPRODUCT(range_of_investment_dates, range_of_investment_values)/SUM(range_of_investment_values)

On Wed, 02 Mar 2005 15:44:42 -0500, Bob Tarburton
wrote:

Myrna got it.
Just wanted to note that all that jazz about weighted average in my
answer can be expressed as
date_initial=SUMPRODUCT(range_of_investment_dates :range_of_investment_values)/SUM(range_of_investment_values)

On Wed, 02 Mar 2005 15:03:52 -0500, Bob Tarburton
wrote:


Hi
compound_return=(total_return)^(1/((date_final-date_initial)/365))-1
Where total_return=final_value/intitial_investment
Final value=5802
Initial investment=5000
final date =today() or your sell date

the trick is that the date_initial is a weighted average of the
investment dates. I
n this case where you deposit = amounts each time, it's a straight
average.

Remember, Excel treats your dates as a real number, so it's
straightforward:
date1*investment1
+date2*investment2
...
+date(n)*investment(n)
divided by
sum of investments



On Wed, 2 Mar 2005 10:53:04 -0800, Dr. Sachin Wagh
wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx


  #9   Report Post  
Dr. Sachin Wagh
 
Posts: n/a
Default

THANX BOB, MYRNA & JEM

"JE McGimpsey" wrote:

Oops - misedited without checking. Sorry!

=RATE(21,-2574,0,129635,1)




In article ,
Dr. Sachin Wagh wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years


  #10   Report Post  
Bob Tarburton
 
Posts: n/a
Default

On Wed, 02 Mar 2005 20:16:10 -0600, Myrna Larson
wrote:

I think you have a typo the colon instead of comma, i.e. should be

date_initial=SUMPRODUCT(range_of_investment_dates ,range_of_investment_values)/SUM(range_of_investment_values)

It's a good thing you're watching the rest of us on this thread ;)
Thanks

On Wed, 02 Mar 2005 15:44:42 -0500, Bob Tarburton
wrote:

Myrna got it.
Just wanted to note that all that jazz about weighted average in my
answer can be expressed as
date_initial=SUMPRODUCT(range_of_investment_date s:range_of_investment_values)/SUM(range_of_investment_values)

On Wed, 02 Mar 2005 15:03:52 -0500, Bob Tarburton
wrote:


Hi
compound_return=(total_return)^(1/((date_final-date_initial)/365))-1
Where total_return=final_value/intitial_investment
Final value=5802
Initial investment=5000
final date =today() or your sell date

the trick is that the date_initial is a weighted average of the
investment dates. I
n this case where you deposit = amounts each time, it's a straight
average.

Remember, Excel treats your dates as a real number, so it's
straightforward:
date1*investment1
+date2*investment2
...
+date(n)*investment(n)
divided by
sum of investments



On Wed, 2 Mar 2005 10:53:04 -0800, Dr. Sachin Wagh
wrote:

SORRY, Not been able to get the desired - it's giving the wrong result

let me give another example
Deposit 1000 every year for 5 years
@ 5%
Year 1: 1000 1050
Year 2: 2050 2153
Year 3: 3153 3310
Year 4: 4310 4526
Year 5: 5526 5802

=RATE(5,-1000,1,5802) yeilds 7.46% instead of 5%

Please help





"JE McGimpsey" wrote:

One way:

=RATE(21,-2574,1,129635)

In article ,
Dr. Sachin Wagh wrote:

I deposit Rs. 2574 each year for 21 years

At the end of 21 years I get Rs. 129635

How do I understand the Compound Rate thats' been applied

Regards & Thanx


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 rate Dr. Sachin Wagh Excel Discussion (Misc queries) 4 March 2nd 05 05:21 PM
compound interest David Excel Worksheet Functions 2 February 22nd 05 08:16 AM
Annual Percentage Rate sts111 Excel Discussion (Misc queries) 1 February 1st 05 01:26 PM
Are financial functions calculated based on compound interest? KDR Excel Worksheet Functions 1 January 3rd 05 02:58 AM
Excel function for FV of daily investment at compound rates rbwm Excel Worksheet Functions 2 December 9th 04 01:53 PM


All times are GMT +1. The time now is 05:01 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"