Formula Guide

The Excel IPMT Function
explained simply

IPMT calculates just the interest portion of a specific loan payment — useful for building a full amortization schedule.

ExcelPro · 4 min read · Updated June 2026
Contents
  1. What does IPMT do?
  2. Syntax
  3. 3 examples
  4. IPMT vs PPMT
  5. FAQ

What does IPMT do?

Every loan payment is split between interest and principal. IPMT calculates just the interest portion of one specific payment in the schedule.

Early in a loan, more of each payment goes to interest; later, more goes to principal — IPMT lets you see exactly how that split changes payment by payment.

Syntax

=IPMT(rate, per, nper, pv, [fv], [type])
ArgumentDescription
rate requiredThe interest rate per period.
per requiredWhich payment number to calculate (1 for the first payment, 2 for the second, etc).
nper requiredThe total number of payments.
pv requiredThe loan amount.
fv optionalThe remaining balance after the last payment. Defaults to 0.
type optional0 = end of period (default), 1 = start.

Examples

Example 1
Interest portion of the first payment
=IPMT(0.05/12,1,36,5000)

On a $5,000 loan at 5% annual interest over 36 months, the first payment's interest portion is about -$20.83.

Example 2
Interest portion of the last payment
=IPMT(0.05/12,36,36,5000)

By the final payment, the interest portion is much smaller since most of the balance has already been repaid.

Example 3
Build a full amortization row
=IPMT(0.05/12,ROW()-1,36,5000)

Using ROW() lets this formula be copied down a column, automatically calculating the interest portion for each successive payment number.

IPMT vs PPMT

IPMT and PPMT together always add up to the total fixed payment (PMT) for that period. IPMT is the interest share; PPMT is the principal share. Early in a loan, IPMT is larger; later, PPMT takes over as more of the balance has already been paid down.

Common mistakes

⚠️ Forgetting per must be within 1 to nper

Asking for the interest on payment 40 of a 36-payment loan returns a #NUM! error.

FAQ

Why is the IPMT result negative?
Like PMT, it follows the convention that money paid out is negative — wrap in ABS if you prefer to display it as a positive figure.

Practise Excel with real data

ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.

Start practicing free →

Related formulas

PPMT PMT RATE