In Excel: use =RATE(nper, pmt, pv) — it works backwards from a payment schedule to the interest rate implied by it, per period.
On this page8
Syntax
Arguments
| Argument | required / optional | Description |
|---|---|---|
nper | required | Total number of periods. |
pmt | required | Payment per period, signed opposite to pv. |
pv | required | Present value. |
fv | optional | Future value. Defaults to 0. |
type | optional | 0 for end-of-period payments, 1 for beginning. |
guess | optional | Starting estimate for the iteration. Defaults to 10 %. |
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
RATE finds the interest rate that makes a given set of payments repay a given balance. Its value is in comparing offers that are quoted differently: a "0 % finance with a fee" deal and a conventional loan become comparable once both are expressed as an implied rate. The result is per period, so a monthly schedule returns a monthly rate that must be multiplied by 12 for the annual equivalent. It solves iteratively rather than algebraically, so an unusual schedule may need the guess argument nudged, and a schedule with no solution returns #NUM!. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “rate function excel”, 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
Paying 350 a month for 48 months on a 15,000 balance: =RATE(48, -350, 15000)*12 returns about 6.1 % annually. A 20,000 item offered at "0 % over 36 months" with a 900 arrangement fee is really =RATE(36, -20000/36, 19100)*12, which is a good deal further from zero than advertised. RATE makes differently structured offers directly comparable, which is the only way to tell which one is actually cheaper. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. 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. Here is the takeaway for “rate function excel”: 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
- Forgetting to annualise — the raw result is per period, so a monthly schedule returns a monthly rate.
- Signing the payment and present value the same way, which prevents any solution.
- Accepting a
#NUM!as "impossible" when it often just needs a better guess argument.
Frequently asked questions
How do I find the interest rate on a loan?
=RATE(nper, -payment, balance) gives the periodic rate. Multiply by 12 for the annual figure on a monthly loan.
Why does RATE return #NUM!?
Either the signs are inconsistent, or the iteration failed to converge. Supply a guess close to the expected rate.
Is the result annual?
No, it is per period. Multiply by the number of periods per year.
Other ways people ask this
This is also commonly searched as “how to use rate function in excel” and “how to use the rate function in 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. “how to use rate function in excel”, “how to use the rate function in excel” all point at the one operation explained on this page, which is why they all lead here.