PMT Function

Excel Functions › Financial

All versions Financial

The Excel PMT function calculates the fixed periodic payment for a loan or annuity — the monthly mortgage or car payment that pays off a balance at a constant interest rate.


Quick answer:
=PMT(6%/12, 5*12, 25000) // about -$483.32 / month

Syntax

=PMT(rate, nper, pv, [fv], [type])
ArgumentDescription
rateRequiredThe interest rate PER PERIOD (annual rate ÷ periods per year).
nperRequiredTotal number of payments.
pvRequiredThe present value (loan amount / principal).
fvOptionalFuture value after the last payment (default 0).
typeOptional0 = payment at period end (default), 1 = at start.

How to use it

The most common mistake is mixing time units. Convert the ANNUAL rate to a per-period rate and the term to a number of periods:

=PMT(6%/12, 5*12, 25000) // a $25,000 loan at 6% over 5 years = about -$483/month

Cash-flow sign convention: money you pay out is negative, money you receive is positive. That is why loan payments and present values often come back negative — wrap in a minus sign or ABS for display.

Try it: interactive demo

Live demo

Change the inputs and watch the result update.

Result:

Practice workbook

📊
Download the free PMT practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

How do I get a monthly payment from an annual rate?
Divide the rate by 12 and multiply the years by 12: =PMT(annualRate/12, years*12, loan).
Why is PMT negative?
Cash-flow sign convention — a payment is money out. Put a minus sign in front, or enter the loan as negative, to show a positive payment.
Does PMT include taxes and insurance?
No — only principal and interest. Add escrow amounts separately.
What is the type argument?
0 (default) means payments at the end of each period; 1 means the beginning, which slightly lowers the payment.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: PMT · FV · PV · RATE · NPER