IPMT Function in Excel

If you just need to ipmt function in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: use =IPMT(rate, per, nper, pv) — it returns the interest portion of one payment, which is largest in period one and falls from there.

On this page8

Syntax

=IPMT(rate, per, nper, pv, [fv], [type])

Arguments

Argumentrequired / optionalDescription
raterequiredInterest rate per period.
perrequiredWhich period to report on.
nperrequiredTotal number of payments.
pvrequiredThe loan amount.
fvoptionalRemaining balance after the final payment. Defaults to 0.
typeoptional0 for end-of-period payments, 1 for beginning.

Related functions

PPMTPMTCUMIPMT and CUMPRINC
ƒxAmortization ScheduleLive
%
Monthly payment
€1,292.14

Total interest €137,642.42 · Total paid €387,642.42

=PMT(rate/12, years*12, -amount)
YearPrincipalInterestEnd balance
1€6,111.41€9,394.29€243,888.59
2€6,347.73€9,157.97€237,540.86
3€6,593.19€8,912.51€230,947.67
4€6,848.14€8,657.56€224,099.53
5€7,112.95€8,392.75€216,986.58
6€7,388.00€8,117.70€209,598.58
7€7,673.69€7,832.01€201,924.90
8€7,970.42€7,535.28€193,954.48
9€8,278.62€7,227.07€185,675.86
10€8,598.75€6,906.95€177,077.11
11€8,931.25€6,574.44€168,145.85
12€9,276.62€6,229.08€158,869.24
13€9,635.33€5,870.37€149,233.91
14€10,007.92€5,497.78€139,225.99
15€10,394.91€5,110.78€128,831.07
16€10,796.87€4,708.82€118,034.20
17€11,214.38€4,291.32€106,819.82
18€11,648.02€3,857.67€95,171.80
19€12,098.44€3,407.26€83,073.36
20€12,566.27€2,939.42€70,507.09
21€13,052.20€2,453.50€57,454.89
22€13,556.91€1,948.79€43,897.98
23€14,081.14€1,424.56€29,816.84
24€14,625.64€880.05€15,191.20
25€15,191.20€314.50€0.00

Need it as an auditable file?

The full month-by-month schedule ships inside the Corporate Finance Suite — formula-driven, unlocked, audit-ready.

View template
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

IPMT returns how much of a given payment is interest rather than principal. Because interest is charged on the outstanding balance, the figure is highest at the start and declines as the balance falls — which is why paying extra early saves disproportionately more than paying extra late. Summing IPMT across every period gives the total interest cost of the loan, the number that makes a long term expensive in a way the monthly payment hides. CUMIPMT does that summation in one call. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “ipmt function in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

On a 200,000 loan at 5 % over 25 years, =IPMT(5%/12, 1, 300, 200000) returns about -833 of interest in month one, falling to roughly -5 by month 300. Total interest over the life is =CUMIPMT(5%/12, 300, 200000, 1, 300, 0), around -150,700 — three quarters of the amount borrowed again. IPMT exposes the true cost of borrowing over time, which the level monthly payment is very good at concealing. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. The short version of “ipmt function in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Mixing an annual rate with a monthly period count, which inflates every figure.
  • Summing IPMT over a partial range and calling it the total interest; make sure the range covers every period.
  • Reading the negative sign as a mistake rather than the outgoing-cash convention.

Frequently asked questions

How much interest will I pay in total?

Sum the IPMT column across all periods, or use =CUMIPMT(rate, nper, pv, 1, nper, 0) to get it in one formula.

Why does the interest fall each month?

Interest is charged on the remaining balance, and each payment reduces that balance. Less balance means less interest.

What is IPMT plus PPMT?

The total payment for that period — exactly the figure PMT returns.