Prepayment Schedule Formula

adamski911

New Member
Joined
Sep 19, 2012
Messages
16
Hi,

I am looking for a formula that will calculate my monthly payments based on a daily rate for each month.

I have manually entered the costs below to show what I am looking to return.

Start DateFinish DateDaysAmount31/08/201730/09/201731/10/201730/11/201731/12/201731/01/2018
Rates15/08/201722/01/20181611000099419251863192519251366

<colgroup><col><col><col><col><col><col span="6"></colgroup><tbody>
</tbody>

<colgroup><col><col><col><col><col><col span="6"></colgroup><tbody>
</tbody>

Can someone please help me?

Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Good point.This is just demonstration as I think my formula must of been wrong.
Should be 10000/161 * 31 = 1925 for Oct and not the 30 day months
 
Upvote 0
Here's what I came up with...

Sheet1

ABCDEFGHIJK
1 StartFinishDaysAmount31/08/201730/09/201731/10/201730/11/201731/12/201731/01/2018
2Rates15/08/201722/01/2018160 10,000 1,000 1,875 1,938 1,875 1,938 1,375

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:68px;"><col style="width:76.5px;"><col style="width:76.5px;"><col style="width:68px;"><col style="width:68px;"><col style="width:77.5px;"><col style="width:76.5px;"><col style="width:76.5px;"><col style="width:76.5px;"><col style="width:76.5px;"><col style="width:76.5px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
F1=EOMONTH(B2,0)
G1=EOMONTH(F1,1)
H1=EOMONTH(G1,1)
I1=EOMONTH(H1,1)
J1=EOMONTH(I1,1)
K1=EOMONTH(J1,1)
D2=C2-B2
F2=$E2/$D2*(MIN(F1,$C2)-MAX(EOMONTH(F1,-1),$B2))
G2=$E2/$D2*(MIN(G1,$C2)-MAX(EOMONTH(G1,-1),$B2))
H2=$E2/$D2*(MIN(H1,$C2)-MAX(EOMONTH(H1,-1),$B2))
I2=$E2/$D2*(MIN(I1,$C2)-MAX(EOMONTH(I1,-1),$B2))
J2=$E2/$D2*(MIN(J1,$C2)-MAX(EOMONTH(J1,-1),$B2))
K2=$E2/$D2*(MIN(K1,$C2)-MAX(EOMONTH(K1,-1),$B2))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4
 
Upvote 0
Maybe...


A
B
C
D
E
F
G
H
I
J
K
L
1
Start Date​
Finish Date​
Days​
Amount​
31/08/2017​
30/09/2017​
31/10/2017​
30/11/2017​
31/12/2017​
31/01/2018​
28/02/2018
2
Rates​
15/08/2017​
22/01/2018​
161​
10000​
1055,90​
1863,35​
1925,47​
1863,35​
1925,47​
1366,46​
0,00​
3

<tbody>
</tbody>


Formula in F2 copied across
=MAX(0,1+MIN(F1,$C2)-MAX(DATE(YEAR(F1),MONTH(F1),1),$B2))/$D2*$E2

Hope this helps

M.
 
Last edited:
Upvote 0
Hi,

This looks great however I should be calculating 161 days as there will be 161 if you include the day it started. ie August would be 17 as I am including the 15th as first day of cost if that makes sense?

Also,is there any way of returning 0 in the following months or previous months when copying the formula across rather than returning negative amounts ie IF statement or something?

Thanks
 
Upvote 0
Hi,

This looks great however I should be calculating 161 days as there will be 161 if you include the day it started. ie August would be 17 as I am including the 15th as first day of cost if that makes sense?

Also,is there any way of returning 0 in the following months or previous months when copying the formula across rather than returning negative amounts ie IF statement or something?

Thanks

The formula in post 5 does exactly what you need (17 days in August, 0 in the following months)

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,381
Messages
6,119,192
Members
448,874
Latest member
Lancelots

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