home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Disc_pv
-
- PARAMETERS _sstmoney, _sstrate, _sstmonths
-
- IF TYPE("_sstmoney") + TYPE("_sstrate") + TYPE("_sstmonths") != "NNN"
- RETURN(-1)
- ENDIF
-
- PRIVATE _ssttime, _sstint
-
- _ssttime = _sstmonths / 12
- _sstint = _sstrate / 100
-
- RETURN(_sstmoney / ( 1 + _sstint)**_ssttime)
-
- * End of File