PMT
Category: Finance functions
Overview
Description | Calculates the periodic payment required for a recurring investment based on a constant interest rate, a number of recurring payments, a present value, and either ordinary annuity or annuity due ( Use when the rate, duration, and present value are known and you want to calculate the periodic payment. |
Syntax |
|
Parameters |
|
Notes |
|
Limitations |
|
Examples
Calculate a periodic payment
This example shows a standard annuity setup with a fixed interest rate, a fixed duration, and a present value. It returns the periodic payment required for the investment setup.
| Rate (Interest Rate) | 0,03 |
| Nper (Number of Periods) | 24 |
| Pv (Present value) | 6000 |
| Fv (Future value) | 0 |
| Type Payment at Beginning of Period (Annuity Due) = 1 Payment at End of Period (Ordinary Annuity) = 0 | 0 |
Formula: PMT('Rate', 'Nper', 'Pv', 'Fv', "Type")
| → PMT Result |
| -354,28 |
The result is negative because it is marked as a payment.
Related Functions
| Function | When to use instead |
| PV | When you want the present value of an annuity-style payment stream instead of the periodic payment. |
| FV | When you want the future value of an annuity-style payment stream instead of the periodic payment. |