The Excel NPER Function

Related Functions:
PMT Function
RATE Function

Function Description

The Excel NPER function calculates the number of periods required to pay off a loan, for a constant periodic payment and a constant interest rate.

The syntax of the function is:

NPER( rate, pmt, pv, [fv], [type] )

Where the arguments are as follows:

rate - The interest rate, per period.
pmt - The amount paid per period.
pv - The present value of the loan.
[fv] -

An optional argument that specifies the future value of the loan, after the final payment.

If omitted, [fv] takes on the default value of 0.
[type] -

An optional argument that defines whether the payment is made at the start or the end of the period.

The [type] argument can have the value 0 or 1, meaning:

0   -   the payment is made at the end of the period;
1   -   the payment is made at the beginning of the period.

If the [type] argument is omitted, it takes on the default value of 0 (denoting payments made at the end of the period).

Cash Flow Sign Convention:

Note that, in line with the general cash flow sign convention, outgoing cash flows are represented by negative numbers and incoming cash flows are represented by positive numbers. This is seen in the examples below.


Nper Function Examples

Example 1

In the following spreadsheet, the Excel Nper function is used to calculate the number of years required to pay off in full, a loan of $50,000 at a rate of $6,000 per year. Interest is charged at a rate of 4% per year, and the payment to the loan is to be made at the end of each year.

 Formula:
  A
1 Number years required to
pay off a loan of $50,000 with
an interest rate of 4% per year
and payments of $6000 per
year (payment made at end
of each yr):
2 =NPER( 4%, -6000, 50000 )
 Result:
  A
1 Number years required to
pay off a loan of $50,000 with
an interest rate of 4% per year
and payments of $6000 per
year (payment made at end
of each yr):
2 10.33803507

Note that in this example:


Example 2

In the example below, the Excel Nper function is used to calculate the number of quarterly payments of $2,000 that are required to reduce a loan of $60,000 to $30,000. Interest is charged at a stated rate of 6% per year and the payment to the loan is to be made at the beginning of each quarter.

 Formula:
  A
1 Number of quarterly payments of
$2,000 that are required to reduce
a loan of $60,000 to $30,000, with an
interest rate of 6% per year (payment
made at beginning of each quarter):
2 =NPER( 6%/4, -2000, 60000, 30000, 1 )
 Result:
  A
1 Number of quarterly payments of
$2,000 that are required to reduce
a loan of $60,000 to $30,000, with an
interest rate of 6% per year (payment
made at beginning of each quarter):
2 52.79477371

Note that, in this example:


Further examples of the Excel Nper function are provided on the Microsoft Office website.


Nper Function Errors

If you get an error from the Nper function, this is likely to be one of the following:

Common Errors
#NUM! - Occurs if the specified future value will never be met for the supplied periodic interest rate and payments. You may need to increase the payment amount or reduce the interest rate to get a valid result.
#VALUE! - Occurs if any of the supplied arguments are not recognised as numeric values.

Also, the following problem is encountered by some users:

Common Problem

The Excel NPER function gives a negative result, when a positive one is expected.

Solution

This problem usually occurs when the present value and the specified periodic payment both have the same arithmetic sign. If a loan is being paid off, present value should be negative and the payment should be positive (or vice versa).

Ensure that all arithmetic signs follow the Cash Flow Sign Convention.