CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
Nper
The Nper function returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.
Usage:
	= Nper(<rate>,<pmt>,<pv>,[<fv>],[<type>]);
Rate is the interest rate per period.
Pmt is the payment made each period and cannot change over the life of the annuity.
Pv is the present value -- the total amount that a series of future payments is worth now.
Fv is the future value you want to attain after the last payment is made. Fv is optional and assumed to be 0.
Type is the number 0 or 1 and indicates when the payments are due. Type is optional and assumed to be 0. 0 is for the end of the period. 1 is for the beginning of the period.
Example:
	/* returns 60 */
	= Fixed(Nper(12% / 12, -100, -1000, 10000, 1), 0)