CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
IPmt
The IPmt function returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate.
Usage:
	= IPmt(<rate>,<per>,<nper>,<pv>,[<fv>],[<type>]);
Rate is the interest rate per period.
Per is the period for which you want to find the interest.
Nper is total number of payment periods in an 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 -66.67 */
	= Fixed(IPmt(0.1/12, 1, 36, 8000), 2)