FV of Monthly Deposits over Schedule of Varying Interest Rates

Brholte

New Member
Joined
Jul 17, 2015
Messages
12
Hello,

I want to compute FV of fixed monthly deposits over 30 years of historical rates of return

I am familiar with the FVSCHEDULE formula which will compute the future value of a lump sum over a schedule of varying interest rates

I am also familiar with the FV formula which will compute the future value of monthly deposits over a period of time with fixed interest rates

Is there a formula that will compute the future value of monthly deposits over a schedule of varying interest rates? I know how to build a table, but could greatly benefit from a formula that will compute this without all of that noise. I want to compute FV of monthly deposits over 30 years of historical rates

thanks!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I think there is no Excel function or closed-form formula that could contemplate the use of 360 interest rates over 360 periods of compounding and deposits. You'll just have to create a table of columns and rows.
 
Upvote 0
I wrote a UDF (user defined function). If you paste the code in a general module, you can use it in your worksheet.
Example: =FVperiodicDeposit(E3,C3:C26)
Code:
Option Explicit

Function FVperiodicDeposit(deposit As Single, periodicInterest As Range) As Single
    Dim interimValue    As Single
    Dim period          As Range
    
    interimValue = 0
    For Each period In periodicInterest
        interimValue = (interimValue + deposit) * (1 + period.Value)
    Next period
    FVperiodicDeposit = interimValue
End Function
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,774
Members
452,353
Latest member
strainu

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