home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Fv_of_psum
-
- PARAMETERS _prinve, _rate, _m, _nopers
-
- IF TYPE("_prinve") + TYPE("_rate") + TYPE("_m") + TYPE("_nopers") != "NNNN"
- RETURN(-1)
- ENDIF
-
- PRIVATE _time, _amnt, _qaz, _subtot
-
- _time = 1 + ((_rate / _m) / 100)
- _amnt = _time
- IF _nopers <> 1
- FOR _qaz = 1 to (_nopers - 1)
- _subtot = _amnt * _time
- _amnt = _subtot
- NEXT
- ENDIF
- RETURN(_prinve * _amnt)
-
- * End of File