Balloon Payment (Remaining Balance)

Excel Formulas › Financial

All versionsFV

A balloon loan has small payments and a big lump sum due at the end. FV computes that remaining balance — the balloon — after the scheduled payments.


Quick formula: balloon owed after N payments on loan B1 (rate B2, payment B3):
=-FV(B2/12, N, B3, B1)
FV projects the balance forward; the negative sign returns it as a positive amount owed.

Functions used (tap for the full reference guide):

The example

$100k at 6% with $600/mo, balloon after 5 years.

AB
1ItemValue
2Monthly payment$600
3Balloon (yr 5)$74,000

The formula

The formula:

=-FV(B2/12, months, payment, loan) // balance still owed

How it works

How it works:

  1. FV(rate/12, periods, payment, −loan) projects the balance after the scheduled payments.
  2. Because payments don’t fully amortize the loan, a balance remains — the balloon.
  3. Negate the result so the amount owed shows as positive.
  4. Set the payment lower than a full amortizing payment to create the balloon; an interest-only loan leaves the entire principal as the balloon.

Plan for the lump sum. A balloon keeps monthly payments low but requires refinancing, selling, or a large cash payment at maturity. Always know the balloon amount before signing.

Try it: interactive demo

Live demo

Loan, rate, payment, years.

Balloon:

Variations

Payment for a target balloon

Solve PMT with FV:

=PMT(r/12, months, -loan, balloon)

Interest-only balloon

Whole principal:

=loan

Total paid

Payments + balloon:

=payment*months + balloon

Pitfalls & errors

Sign convention. Loan positive, payment negative (or use the leading minus on FV) so the balloon is positive.

Match the period. Monthly: rate/12 and years×12.

Know the lump sum. The balloon must be paid or refinanced at maturity.

Practice workbook

📊
Download the free Balloon Payment (Remaining Balance) practice workbook
A balloon-payment sheet with the target-balloon, interest-only, and total-paid variants, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I calculate a balloon payment in Excel?
Use =-FV(rate/12, periods, payment, loan). FV projects the remaining balance after the scheduled payments — the balloon due at the end.
How do I set a payment for a target balloon?
Include the balloon as the future value in PMT: =PMT(rate/12, months, -loan, balloon).
What is the balloon on an interest-only loan?
The entire original principal, since no principal is repaid during the term.

Stop fighting formulas. Learn them in a day.

This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related formulas: Future value of savings · Loan payoff with extra payments · Calculate a loan payment

Function references: FV · PMT