In Excel: use =PPMT(rate, per, nper, pv) — it returns the principal portion of one specific payment, which grows every period as the interest share shrinks.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
rate | required | Interest rate per period — divide an annual rate by 12 for monthly. |
per | required | Which period to report on, from 1 to nper. |
nper | required | Total number of payments. |
pv | required | Present value — the loan amount. |
fv | optional | Balance remaining after the last payment. Defaults to 0. |
type | optional | 0 or omitted for payment at period end, 1 for the beginning. |
Related functions
Total interest €137,642.42 · Total paid €387,642.42
| Year | Principal | Interest | End 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.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
PPMT isolates how much of a single loan payment goes to reducing the balance rather than paying interest. The total payment stays level, but its split shifts: early payments are mostly interest, later ones mostly principal. That shift is exactly what an amortisation schedule shows, and PPMT plus IPMT is how you build one — the two always add up to the PMT for the same period. The rate and the period count must be in the same unit, so an annual rate needs dividing by 12 alongside a term multiplied by 12. Results come back negative because the money leaves you. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “ppmt formula excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. 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. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
A 200,000 loan at 5 % annual over 25 years: =PPMT(5%/12, 1, 300, 200000) returns about -252 for the first month, while month 300 returns roughly -1,163. The interest half, =IPMT(5%/12, 1, 300, 200000), is about -833 in month one — and the two together equal the level =PMT of about -1,169. PPMT is what makes the shifting principal-and-interest split visible, which is the whole point of an amortisation schedule. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “ppmt formula 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
- Passing an annual rate with a monthly term, which reports a payment roughly twelve times too large.
- Treating the negative result as an error; it reflects Excel's convention that outgoing money is negative. Wrap in
ABSfor display. - Forgetting to anchor the rate, nper and pv references before filling down, which corrupts every row below the first.
Frequently asked questions
What is the difference between PPMT and IPMT?
PPMT returns the principal portion of a payment, IPMT the interest portion. Added together they equal the total PMT for that period.
Why is the result negative?
Excel signs cash you pay out as negative. Use ABS, or enter the loan amount as negative, to flip it.
How do I build a full amortisation schedule?
List the periods down a column, then use PPMT and IPMT beside them with absolute references to the rate, term and loan amount.