V varunmathur Registered User. Local time Today, 04:39 Joined Feb 3, 2001 Messages 68 Feb 3, 2003 #1 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?
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?
Newman Québécois Local time Today, 00:39 Joined Aug 26, 2002 Messages 766 Feb 3, 2003 #2 You could do something like this: Value = (Round(10 * Value)) / 10 Value has to be formated as Money