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