-
Hello There...
I've build xml database using Access 2000.
So when I'm open that database using IE5 Browser,
the field which data type as number(single)have more than
2 decimal place(Ex:23.12678).
My problem => How could I format my field to 2 decimal place using vbscript.
Hope someone can help me..
-
Providing VB Script has the 'FORMAT' keyword you can do something similar to: -
lblMyFormLabel = Format(lngMyVeryLongNumber,"0.00")
There's a lot you can do with Format, just check out your help files!