interest calculations

vsuram

New Member
Joined
Aug 24, 2024
Messages
12
Office Version
  1. 365
Platform
  1. Windows

cumulative time deposits in indian banks​

 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
This is a calculator I am trying to develop.
To calculate maturity amount of a given principal, at given Rate of Interest , for a duration between any given two dates, when the frequency of compounding is quarterly, the steps are:
1. calculate the number of completed quarters and balance number of days (which are less than a quarter).
2. Calculate maturity amount using FV formula for completed quarters, and on this amount calculate interest for the balance number of days using ptr/100.
3. Final maturity is calculated by adding the two.
The crucial step is calculating completed quarters and balance days. In the following table I did it in a round about way. Calculatedno of months between the two dates, got quarters by dividing by 3, then found out the quarter end date by EDATE function, and got balance days by subtracting this from maturity date.

Is there a more elegant way to do this.

STDRMATCAL.xlsx
AB
1STDR MAT CAL
2
3Start date 13-04-2023
4Mat Date13-04-2025
5Principal3600000
6ROI8.90%
7months 24
8qrs8
9quarter end13-04-2025
10bal days0
11Mat Amount4292985.83
124292986
Sheet1
Cell Formulas
RangeFormula
B7B7=DATEDIF(B3,B4, "m")
B8B8=INT(B7/3)
B9B9=EDATE(B3,3*B8)
B10B10=B4-B9
B11B11=LET(y,FV(B6/4,B8,0,-B5),y+(y*B6/365*B10))
B12B12=B11
 
Upvote 0
another eg with balance days
STDRMATCAL.xlsx
AB
1STDR MAT CAL
2
3Start date 13-04-2023
4Mat Date25-04-2025
5Principal3600000
6ROI8.90%
7months 24
8qrs8
9quarter end13-04-2025
10bal days12
11Mat Amount4305547.22
124305547
Sheet1
Cell Formulas
RangeFormula
B7B7=DATEDIF(B3,B4, "m")
B8B8=INT(B7/3)
B9B9=EDATE(B3,3*B8)
B10B10=B4-B9
B11B11=LET(y,FV(B6/4,B8,0,-B5),y+(y*B6/365*B10))
B12B12=B11
 
Upvote 0

Forum statistics

Threads
1,226,453
Messages
6,191,136
Members
453,642
Latest member
jefals

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