In Excel: use =PMT(rate, nper, pv) — it returns the level payment that clears a loan, so =PMT(5%/12, 300, 200000) gives about -1,169 a month.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
rate | required | Interest rate per period. Divide an annual rate by 12 for monthly payments. |
nper | required | Total number of payments over the life of the loan. |
pv | required | Present value — the amount borrowed. |
fv | optional | Balance you want left at the end. Defaults to 0. |
type | optional | 0 or omitted for payments at period end, 1 for the beginning. |
Related functions
Total interest €137,642.42 · Total paid €387,642.42
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
PMT calculates the constant payment needed to repay a loan at a fixed rate over a fixed term. It is the single most-used financial function in spreadsheets and the entry point to every mortgage model. Two rules govern it. The rate and the period count must share a unit — an annual rate divided by 12 alongside a term in months. And the result is negative because it is money leaving you; entering the loan amount as negative, or wrapping the result in ABS, flips it for display. The optional fv argument covers loans with a balloon payment at the end. 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. For “pmt excel formula”, 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
200,000 borrowed at 5 % annual over 25 years: =PMT(5%/12, 25*12, 200000) returns about -1,169.18 a month. To see what a shorter term costs, change 25 to 15 and the payment rises to roughly -1,581 — while total interest falls by more than half. A car lease with a 5,000 residual: =PMT(4%/12, 36, 25000, -5000). PMT is the answer to "what will this cost me a month", which is the question every borrowing decision actually turns on. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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. Here is the takeaway for “pmt excel formula”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
Common mistakes
- Passing an annual rate with a monthly term — the most common error with this function, and it produces a wildly wrong payment.
- Expecting a positive number; the sign is the cash-flow convention, not a fault.
- Forgetting that
PMTcovers principal and interest only — tax, insurance and fees are not in it.
Frequently asked questions
How do I calculate a monthly mortgage payment?
=PMT(annual_rate/12, years*12, loan_amount). Divide the rate and multiply the term by the same 12.
Why is PMT negative?
Excel signs outgoing cash negative. Wrap it in ABS, or enter the loan amount as a negative number.
Does PMT include taxes and insurance?
No. It returns principal and interest only; escrow items have to be added separately.
Other ways people ask this
This is also commonly searched as “excel pmt formula example”, “pmt formula in excel with example” and “how to use pmt on excel”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “excel pmt formula example”, “pmt formula in excel with example”, “how to use pmt on excel” all point at the one operation explained on this page, which is why they all lead here.