Compare Two Loans Side by Side

Excel Formulas › Business

All versionsPMT

Which loan really costs less? Put both side by side and let PMT compute each monthly payment and total interest. A lower rate with a longer term can still cost more — the math settles it.


Quick formula: for principal B1, annual rate B2, years B3:
=PMT(B2/12, B3*12, -B1)
Gives the monthly payment. Multiply by the number of payments and subtract principal for total interest.

Functions used (tap for the full reference guide):

The example

$25,000 at 6%/5yr versus 5.5%/6yr.

ABC
1Loan ALoan B
2Payment$483.32$408.20
3Total interest$3,999$4,390

The formula

Payment and total interest for each loan:

=PMT(B2/12, B3*12, -B1) // monthly payment =PMT(B2/12,B3*12,-B1)*B3*12 - B1 // total interest // lower payment, more interest

How it works

Compare the true cost, not just the payment:

  1. PMT(rate/12, years*12, -principal) gives the monthly payment for each loan.
  2. Total paid is payment × number of payments; subtract the principal for total interest.
  3. A longer term lowers the payment but usually raises total interest — compare the interest, not the payment alone.
  4. Build both columns from the same formulas so changing a rate or term updates the comparison instantly.

Add the break-even: if one loan has fees, compute how many months of payment savings it takes to recover them — =fees / monthlySaving.

Try it: interactive demo

Live demo

Set principal and two rate/term options.

A: · B:

Variations

Total interest

All-in cost of borrowing:

=PMT(r/12,n*12,-p)*n*12 - p

Interest only (CUMIPMT)

Over the whole term:

=-CUMIPMT(r/12, n*12, p, 1, n*12, 0)

Fee break-even

Months to recover fees:

=fees / (paymentA - paymentB)

Pitfalls & errors

Compare total interest, not payment. A smaller payment over more months often costs more overall.

Sign convention. Enter principal negative (or negate PMT) so the payment is positive.

Match the period. Monthly loans use rate/12 and years*12; mixing annual and monthly skews everything.

Practice workbook

📊
Download the free Compare Two Loans Side by Side practice workbook
A two-loan comparison with payment, total interest, and fee break-even, plus 4 challenges with answers. No sign-up required.

Frequently asked questions

How do I compare two loans in Excel?
Compute each payment with =PMT(rate/12, years*12, -principal), then total interest as payment×months−principal. Compare total interest, since a lower payment over a longer term can cost more.
How do I find total interest on a loan?
Multiply the payment by the number of payments and subtract the principal: =PMT(r/12,n*12,-p)*n*12 - p.
How do I account for loan fees?
Divide the fees by the monthly payment difference to see how many months it takes to break even: =fees/(paymentA-paymentB).

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: Calculate a loan payment · Loan payoff with extra payments · Amortization schedule

Function references: PMT · CUMIPMT