Rounding off in currency

varunmathur

Registered User.
Local time
Today, 04:39
Joined
Feb 3, 2001
Messages
68
If the value is $1.32 I need to round off the figure in the currency field to read $1.30 and not $1.3, how should I go about it?
 
You could do something like this:
Value = (Round(10 * Value)) / 10
Value has to be formated as Money
 

Users who are viewing this thread

Back
Top Bottom