CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
Fv
The Fv function returns the future value of an investment based on periodic, constant payments and a constant interest rate.
Usage:
	= Fv(<rate>,<nper>,<pmt>,[<pv>],[<type>])
Rate is the interest rate per period.
Nper is total number of payment periods in an annuity.
Pmt is the payment made each period and cannot change over the life of the annuity.
Pv is the present value. Pv 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 $2581.40 */
	= Fv(0.5%, 10, -200, -500, 1)