- What's the difference between NPER and PMT?
- PMT calculates the payment amount if you know the number of periods. NPER calculates the number of periods if you know the payment amount. Use PMT when you want to know how much to pay each month given a fixed timeline; use NPER when you want to know how long it takes given a fixed payment.
- Why do I get a #NUM! error when I enter =NPER(1%, 500, 10000)?
- Both pmt (500) and pv (10000) are positive, meaning money flows in the same direction. NPER assumes one is money going out and one is money coming in. Change the formula to =NPER(1%, -500, 10000) so that the payment is negative (money leaving) and pv is positive (money owed).
- How do I convert NPER result to years when I used monthly rates?
- Divide the NPER result by 12. For example, if NPER returns 60 periods with a monthly interest rate, the loan is paid off in 60 ÷ 12 = 5 years. For quarterly rates, divide by 4; for weekly rates, divide by 52.
- Can NPER handle payments that increase or change each period?
- No, NPER assumes fixed, equal payments every period. For loans with variable payments, irregular schedules, or step increases, calculate the present value of the payment series separately or use iterative solver tools.