home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Pvoffv
-
- PARAMETERS _money, _rate, _term, _periods
-
- IF PCOUNT() != 4
- RETURN(0)
- ELSEIF TYPE("_money") + TYPE("_rate") + TYPE("_term") + TYPE("_periods") != "NNNN"
- RETURN(0)
- ENDIF
-
- * Contributed by C.A.Pantaleoni
-
- PRIVATE _time, _int
-
- _time = _term / _periods
- _int = _rate / 100
-
- RETURN( 1/(1+(_int/_periods))^(_term*_periods)*_money )
-
- * End of File
-