Loan repayment calculation

BrutalLogiC

Active Member
Joined
Feb 26, 2006
Messages
267
Office Version
  1. 2016
Platform
  1. Windows
Hi I want to take out a loan for 25,000,000 at 7% annual fixed interest rate and make month end monthly repayments.

I want to take out the loan immediately "month 0" but not start paying it back until month 7... because I won't have any income for 6 months. I must pay the whole lot back by month 38.

I'm struggling with how to plot this out what my monthly repayments would be on a spreadsheet, can anyone help please.

The running balance of the loan would be something like this:
Month 0 = 25,000,000
Month 1 = 25,145,833
Month 2 = month 1 value + interest
Month 3 = month 2 value + interest
Month 4 = month 3 value + interest
Month 5 = month 4 value + interest
Month 6 = month 5 value + interest
Month 7 = month 6 value + interest less my first repayment
Month 8 = month 7 value + interest less my second repayment
Start of month 39 = nil!
 
Last edited:

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Use goal seek. I presume you want equal payments each month save the first 6 months. Im no finance man but id have thought you need to have a column of month numbers then a formula next to them similar to:

=B8+(B8*7%/12)-$D$3

The first 6 months just dont include the -$D$3

=B2+(B2*7%/12)

where D3 is to house the monthly payment. Once you have all your formulas in place you tell goal seek to set your last cell eg B40 to 0 by changing the monthly payment cell eg D3. There is probably a function that can do it but i know nothing about those functions.
 
Upvote 0
Use goal seek. I presume you want equal payments each month save the first 6 months. Im no finance man but id have thought you need to have a column of month numbers then a formula next to them similar to:

=B8+(B8*7%/12)-$D$3

The first 6 months just dont include the -$D$3

=B2+(B2*7%/12)

where D3 is to house the monthly payment. Once you have all your formulas in place you tell goal seek to set your last cell eg B40 to 0 by changing the monthly payment cell eg D3. There is probably a function that can do it but i know nothing about those functions.

hi Steve I don't want to make equal payments, month 7 payment will be highest and month 38 will be lowest
 
Upvote 0
I want to take out a loan for 25,000,000 at 7% annual fixed interest rate and make month end monthly repayments.
[....]
Month 0 = 25,000,000
Month 1 = 25,145,833
Month 2 = month 1 value + interest
Month 3 = month 2 value + interest
Month 4 = month 3 value + interest
Month 5 = month 4 value + interest
Month 6 = month 5 value + interest
Month 7 = month 6 value + interest less my first repayment
Month 8 = month 7 value + interest less my second repayment
Start of month 39 = nil

So the loan balance accrues compounded interest for 6 months. Then you have 32 months to pay off the accrued balance.

=PMT(7%/12, 32, -FV(7%/12, 6, 0, -25000000))

Proof:

CDE
1per#pmtend bal
225,000,000.00
3125,145,833.33
4225,292,517.36
5325,440,057.05
6425,588,457.38
7525,737,723.38
8625,887,860.10
97889,200.0825,149,672.54
108889,200.0824,407,178.89




3735889,200.082,636,778.18
3836889,200.081,762,959.31
3937889,200.08884,043.16
4038889,200.080.00

<tbody>
</tbody>

Formulas:
A2: =PMT(7%/12, 32, -FV(7%/12, 6, 0, -25000000))
E3: =E2*(1+7%/12)-D3
D9: =$A$2
Copy D9 and E3 down their respective columns.

Note that calculations are not rounded. If you choose to round the formula in A2, the formula in D40 should be:

D40: =ROUND(E39*(1+7%/12), 2)
 
Last edited:
Upvote 0
Interest-Only Loan Payment Calculation Formula


Increase the sum you get by the yearly loan fee. At that point partition by the quantity of installments every year. There are different approaches to land at that equivalent outcome. Model (utilizing a similar advance as above): $100,000 times .06 = $6,000 every time of intrigue.
 
Upvote 0

Forum statistics

Threads
1,213,538
Messages
6,114,220
Members
448,554
Latest member
Gleisner2

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