Determine the Annual Percentage Rate on a loan with a balloon payment - work shown

rosefin01

New Member
Joined
Feb 13, 2013
Messages
18
Hi Guys :),

I am feeling like this: :ROFLMAO:

Here's what I have:


VALUESLABELSNOTES/FUNCTIONS
500,000.00Loan Amount
30Term in Years
9.95%Interest Rate
4,369.39Monthly Payment=-PMT(B4/12,B3*12,B2,0)
11,909.56Finance Charge
488,090.44Amount Financed=B2-B6
10.238%APR for fully amortized loan=12*RATE(B3*12,-B5,B7,,0)
119Payments of $4369.39119 months, then balloon payment due
454,932.67Principal Balance at month 119=SUM(CUMPRINC(B4/12,B3*12,B2,1,B10,0))+B2
3,772.15Accrued Interest, month 120=SUM((B13*B4)/360)*30
458,704.82Balloon Payment (10 year mark)=B13+B14
9.417% INCORRECT APR Balloon =12*RATE(A3*12,-A5,A2,A14,1) This is the part I'm struggling with several days without an answer.

<tbody>
</tbody>

Can anybody show me how to calculate the Annual Percentage Rate on a loan with a balloon payment (as shown above).
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
What is the question that you're trying to solve?

And is there an answer provided?
 
Upvote 0
What is the question that you're trying to solve?

And is there an answer provided?

Hello Stephen,

The question that I am trying to solve is this: what Excel function will determine the Annual Percentage Rate for an amortized, fixed rate loan with a balloon payment?

I have a $500,000 loan amount that is amortized over 30-years. However, at the end of 10-years, the loan becomes due and payable. The APR on this loan differs from the APR on a fully amortized loan because of the balloon payment.

The APR for a fully amortized loan is 10.238%. (I verified that with a national loan originator vendor's software). The APR for a the 30-due-in-10 Balloon Loan is 10.345% (using the same national loan origination vendor's software).

How can I find the Balloon Loan APR with Excel? That is the question! :)
 
Upvote 0
The APR for a the 30-due-in-10 Balloon Loan is 10.345% (using the same national loan origination vendor's software). How can I find the Balloon Loan APR with Excel? That is the question!

You have many typos in your original posting, and it is difficult to know how things line up with row numbers. I assume your layout is as follows. I show the corrected formulas.


A
B
2
$500,000.00
loan amt
3
30term (yrs)
4
9.9500%annl rate
5
$4,369.39pmt/mo
6
$11,909.56fin chrg
7
$488,090.44fin amt
8
10.2379%
APR
9
119#actl pmts
10


11


12


13
$454,932.67bal at 119
14
$3,772.15accr int, mo 120
15
$454,335.43balloon pmt, mo 120
16
10.3452%APR, mo 120
17
$458,704.82
total last pmt

<tbody>
</tbody>
Code:
A5:   =-PMT(A4/12,A3*12,A2)
A7:   =A2-A6
A8:   =12*RATE(A3*12,-A5,A7,0)
A13:  =-FV(A4/12,A9,-A5,A2)
A14:  =A13*A4/12
A15:  =-FV(A4/12,A9+1,-A5,A2)
A16:  =12*RATE(A9+1,-A5,A7,-A15)
A17:  =A5+A15

I include A13 and A14, just to show how to calculate them simply. We don't need them.

It is easier to assume that you make a regular payment for month 120, and the balloon payment is the balance (A15).

The 10-year APR is based on 120 months (A9+1), not the full term.

And like the full-term APR, the "pv" is the loan less finance charges (A7), not just the loan amount.

The "fv" is the balloon payment, properly signed (-A15).

Finally, the loan "type" is still 0 (end of period), not 1 (beginning of period).

Aside.... Since these are real-world calculations, we really should round the monthly payment in A5. In this case, it does not substantially alter the 10-year APR; but it does change some values in small ways. I don't know if the online calculator does that, though. So I tried to keep everything as you had it for comparison purposes.
 
Last edited:
Upvote 0
Wow, thank you very much for your answers here! Very grateful. I do need time to process your calculations, which will be done first thing in the AM. Warmest Regards, Joeu2004.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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