How to Calculate Loan Payments in Excel without AI
In the late 1980s, I worked as a general manager in the supply chain management department at a peripheral device distributor in Korea. Back then, no one in our department had any idea about the PMT formula, which calculates a fixed monthly loan payment. That formula was first introduced in 1985 in Excel 1.0 for Macintosh computers, so it already existed—we simply didn't know about it.
Our company often had to borrow large sums of money from local banks to pay for big shipments. Looking back, knowing the PMT formula would have saved us a lot of guesswork and helped us plan our finances far more accurately.
Now I teach this formula to my college students, and often they tell me how useful it is. It's not just students, either—according to Statistics Canada, *about 35.5% of Canadian homeowners currently carry a mortgage*. If more of them understood how to calculate their own monthly payments and grasped the logic behind the number, they'd be in a much stronger position when negotiating loans or planning a budget.
The formula
Suppose we have the screenshot of an Excel file with sample loan data as you see in the top image—principal amount, interest rate, and loan term—and you want to calculate the monthly payment for each loan.
The formula looks like this:
=PMT(Monthly Rate, Number of Payments, Total Payment Amount)
So, for a loan listed in row 2, with the annual interest rate in cell B7, the loan term in years in column B, and the loan amount in column C, the actual formula in cell D2 would be:
=PMT($B$7, B2*12, -C2)
A few things are worth explaining here. First, the annual rate in B7 needs to be converted to a monthly rate (usually by dividing by 12) before it's used, since PMT calculates payments per period, not per year. Second, B2*12 converts the loan term from years into months, since each payment period is one month. Third, the loan amount is entered as a negative number.
This is because Excel treats the loan as money flowing out from the lender's perspective, so the result comes back as a positive value representing the payment you owe.
Once the formula is in D2, you can simply copy it down to D3, D4, and D5, and Excel will automatically recalculate the monthly payment for each loan using the corresponding row's data, while the dollar signs in $B$7 keep the interest rate reference fixed.
I've had several students who already work as accountants tell me they'd never encountered this formula before, and they were genuinely grateful to learn it. Understanding PMT, especially when combined with other essential formulas like XLOOKUP, VLOOKUP, and HLOOKUP, creates a real synergy for anyone working in accounting, finance, or paralegal roles. If you're interested, you can check out my earlier posts on those lookup formulas:
Even in this AI-driven era, I believe it's still worth understanding how things work under the hood. Knowing the structure behind a formula like PMT doesn't just help you get the right number—it gives you the ability to explain the process to someone else, troubleshoot when something looks off, and make sound decisions even without a tool in front of you. That kind of understanding never really goes out of style.
* The top image was created by Nano Banana 2

Comments
Post a Comment