Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=PMT(B2/12,C2*12,-A2)Computed by a real spreadsheet engine on the sample data below.
| Loan Amount | Annual Rate | Years | Monthly Payment |
| 200000 | 0.05 | 30 | |
| 15000 | 0.07 | 5 | |
| 8000 | 0.06 | 3 | |
| 50000 | 0.045 | 10 |
=PMT(B2/12,C2*12,-A2)→1073.6432460243
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.
PMT signs cash flows from the lender's perspective: money paid out is negative. To get a positive monthly payment, negate the principal: =PMT(rate, nper, -A2). Or wrap with ABS.
Add the balloon as the fourth argument (FV): =PMT(B2/12, C2*12, -A2, -BalloonAmount). For a $20,000 balloon: =PMT(B2/12, C2*12, -A2, -20000).
Use IPMT for interest and PPMT for principal. Both take the same arguments as PMT plus a period number: =IPMT(B2/12, 1, C2*12, -A2) returns the interest portion of payment 1; =PPMT(B2/12, 1, C2*12, -A2) returns the principal portion. They sum to PMT.
Mortgage calculators often add property tax, insurance (PITI), and PMI on top of principal and interest. PMT only computes the P&I portion. To match: =PMT(B2/12, C2*12, -A2) + monthly_tax + monthly_insurance + monthly_pmi.
Use PV (present value): =PV(rate/12, years*12, -monthly_payment). Plug in your max monthly payment, rate, and term to back-solve the principal.
Total = monthly payment × total payments: =ABS(PMT(B2/12, C2*12, -A2)) * C2 * 12. Total interest = total minus principal: same expression minus A2.
Use the nominal interest rate, not APR. APR includes fees that aren't amortized into the monthly payment. The interest rate is what PMT expects for compounding the balance.
Calculate a compounded closing balance from principal, annual nominal rate, compounding frequency and years, then separate the interest earned.
How-toConvert a positive nominal annual rate and a whole-number compounding frequency into an effective annual rate with EFFECT.
How-toDivide fixed costs by unit contribution margin and round up to whole units, with an explicit message when the margin is nonpositive.
How-toApply different commission rates by sales tier using IFS. Works in Excel 2019/365 and Google Sheets.
How-toCalculate take-home (net) pay by subtracting every deduction from gross salary, with worked examples for fixed amounts, percentage tax, and slab-based tax. Excel and Google Sheets.
How-toCompute gross margin percentage as (price − cost) / price. Identical in Excel and Google Sheets.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: