Amortization Schedule

Pumper

Board Regular
Joined
Sep 12, 2013
Messages
95
Office Version
  1. 2016
Hi All, I can see numerous posts on this but nothing quite what I am after.

I am trying to get back the yearly interest payment that is calculated based on monthly payments without having to set up amortization tables.

Is it possible to bring back the yearly interest payment using IMPT rate using the monthly calculations? from what I have come across it gets you close but not exact.

eg For a loan of $800,000 at 6% interest for 30yrs the first yearly amount should be $47,732.76 not $48,000,00 which is what I get using the IMPT formula.

If anyone could help out or point me in the right direction that would me much appreciated.

Trying to avoid doing like this as I have so many to do in the same spreadsheet.

1679266395178.png
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
What about:

Code:
=SUM(IPMT(B3/B5,{1,2,3,4,5,6,7,8,9,10,11,12},B4*B5,B6))
 
Upvote 0
Amortization.xlsm
ABC
1
2Rate6%
3Term30
412
5Amount$800,000.00
6
7Interest Year 147,732.76
8Payment$4,796.40
1c
Cell Formulas
RangeFormula
B7B7=-CUMIPMT(B2/12,B3*B4,B5,1,12,0)
B8B8=PMT(B2/12,B3*B4,-B5,0,0)
 
Upvote 0
Solution
Thanks for your time kweaver that works, very kind of you to take a look, Dave think yours will be easier to use over multiple properties so thank you very much too! works fine but can I bother you to ask where you would change the formula for the second year? 47,126.82 would be the correct amount.

ie when i change the last 12 to 24 in your formula I get 90,860 then subtract the pervious 47,732.76 from that to get 43,127 which is correct but I assume there is a cleaner way to do?

If not I can work with what you kindly provided.

Thanks again for your time
 
Upvote 0
Amortization.xlsm
CDEFG
6Year 2132447,126.8347,126.83
1c
Cell Formulas
RangeFormula
F6F6=-CUMIPMT(B2/12,B3*B4,B5,13,24,0)
G6G6=-CUMIPMT(B2/12,B3*B4,B5,D6,E6,0)


Try reading Excel's help information for the function.
 
Upvote 0
In my haste I forgot about CUMIPMT. Dave's is the better way.

BTW, @Pumper, you need 13 to 24 for the 2nd year, not 12 to 24, or 1 to 24 if you want two years cum interest.
 
Upvote 0
I have kindly been provided the following by Dave above which works perfectly however I also need to add the option to add additional monthly payments.

Is there a way to modify =-CUMIPMT(B2/12,B3*B4,B5,1,12,0) to incorporate say $500 additional monthly payments?

This would return $45,719,.38 for year 1 if $500 per month of additional payments was added.

Thanks in advance.

1679454660538.png
 
Upvote 0
With an extra payment of $500 per month, the loan would be paid off in approximately 282 payments.
With Goal seek, the amount of payment for 282 months is $5298.03.
If you do not have Let, you can edit the formula.

Amortization.xlsm
ABCDEFGHIJKLMN
1Interest by period year CUMIPMT
2Rate6%0.005Year 1Year 2Year 3Year 4Year 5Year 6Year 7Year 8Year 9Year 10
3Term30$47,564.43$46,576.85$45,528.35$44,415.19$43,233.37$41,978.66$40,646.56$39,232.30$37,730.81$36,136.71
412
5Amount$800,000.00
6
7
1cc
Cell Formulas
RangeFormula
C2C2=B2/B4
E3E3=-CUMIPMT($C2,282,$B5,1,12,0)
F3:N3F3=LET(t,COLUMNS($H$1:H1)*12,-CUMIPMT($C2,282,$B5,t+1,t+12,0))
 
Upvote 0
I moved the data before the post.
The same information follows.
How did you calculate the amount of interest?

Cell Formulas
RangeFormula
C2C2=B2/B4
E3E3=-CUMIPMT($C2,282,$B5,1,12,0)
F3:N3F3=LET(t,COLUMNS($F$1:F1)*12,-CUMIPMT($C2,282,$B5,t+1,t+12,0))
E4E4=-CUMIPMT($C2,282,$B5,1,12,0)
F4:N4F4=-CUMIPMT($C2,282,$B5,COLUMNS($F$1:F1)*12+1,COLUMNS($F$1:F1)*12+12,0)
E5E5=-CUMIPMT($C2,282,$B5,1,12,0)
F5:N5F5=-CUMIPMT($C2,282,$B5,COLUMNS($F$1:F1)*12+1,COLUMNS($F$1:G1)*12,0)
C8C8=B8-'1c'!B8
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,117
Messages
6,128,935
Members
449,480
Latest member
yesitisasport

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