Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

VBScript CCur Function

❮ Complete VBScript Reference

The CCur function converts an expression to type Currency.

The expression must be a numeric value.

Syntax

CCur(expression)
Parameter Description
expression Required. Any valid expression

Examples

Example 1

<%

response.write(CCur(30) & "<br />")

%>

The output of the code above will be:

30
Show Example »

Example 2

Note that CCur rounds off to 4 decimals:

<%

response.write(CCur(5.9555555555555) & "<br />")

%>

The output of the code above will be:

5.9556
Show Example »

❮ Complete VBScript Reference