home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- FUNCTION Percent
-
- PARAMETERS _pertop, _perbot
-
- * This shows the percentage of _pertop into _perbot
-
- IF PCOUNT() != 2
- RETURN("")
- ELSEIF _perbot = 0
- RETURN("")
- ENDIF
-
- IF TYPE("_perbot") = "U" .OR. TYPE("_perbot") = "U"
- RETURN("")
- ENDIF
-
- RETURN(STRTRAN(TRANSFORM((_pertop/_perbot)*100, "#############.##%")," ", ""))
-
- * End of File