Compound interest, varying per annum

BrutalLogiC

Active Member
Joined
Feb 26, 2006
Messages
267
Office Version
  1. 2016
Platform
  1. Windows
Hello there.

I was wondering what formula to use to calculate compound interest where the interest rate is not fixed each year

e.g. investment of £400k
interest rate months 1-12 @ 3%
interest rate month 13-24 @ 3.5%
interest rate month 25-100 @ 3%
etc

Hope that makes sense. I am using =FV(C6/E6,D6*E6,0,-B6) to calculate sum based on fixed interest rate but want to amend to different percentage each month or year
B is the sum of money
C is the interest rate
D is the years
E is the internals per annum

Cheers
 
Last edited:

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
change C from interest rate to date of investment and use this formula.

=FV(IF(DATEDIF(C6,TODAY(),"m")>=12,3%,IF(AND(DATEDIF(C6,TODAY(),"m")>=24,DATEDIF(C6,TODAY(),"m")<=13),3.5%,IF(DATEDIF(C6,TODAY(),"m")<=25,3%,"")))/E6,D6*E6,0,-B6)
 
Upvote 0
I was wondering what formula to use to calculate compound interest where the interest rate is not fixed each year
e.g. investment of 400k
interest rate months 1-12 @ 3%
interest rate month 13-24 @ 3.5%
interest rate month 25-100 @ 3%
etc

It is not clear to me how flexible you want the design to be. Usually, we rely on you to tell us the design and the design requirements.

Perhaps the following paradigm will help.

B
C
D
1
Loan
Annl Rate
Months
2
400,000
3.00%
12
3
3.50%
12
4
3.00%
76

<tbody>
</tbody>


The FV can be calculated by either of the following equivalent formulas:

{ =B2 * PRODUCT( (1 + C2:C4/12)^D2:D4 ) }
or
{ =FVSCHEDULE(B2, (1 + C2:C4/12)^D2:D4 - 1) }

Formulas displayed with curly brackets {...} are array-entered. Type the formulas without the curly brackets, then press ctrl+shift+Enter instead of just Enter. Excel displays the curly brackets in the Formula Bar to indicate that the formula is array-entered.

You can use the FVSCHEDULE formula if the Excel file is saved as "xlsx" or "xlsm". Use the PRODUCT formula if the Excel file is saved as "xls".

PS.... Those formulas calculate the FV, as you did in your example. If you want just the compounded interest, subtract B2 at the end of each one.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,168
Messages
6,123,402
Members
449,098
Latest member
ArturS75

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