I pulled these off the web. I've used the standard one in my code wih success. This might give you a start until a guru can jump in...
Currency:
<% = Format( num, "Currency" ) %><BR>
Fixed:
<% = Format( num, "Fixed" ) %><BR>
Standard:
<% = Format( num, "Standard" ) %><BR>
generates output
Currency: $1,741,534.54
Fixed: 1741534.54
Standard: 1,741,534.54
|