Round to nearest 10 cents

TimTDP

Registered User.
Local time
Today, 15:18
Joined
Oct 24, 2008
Messages
213
How can a I round to the nearest 10 cents
e.g
10.04 = 10.00
10.06 = 10.10
10.28 = 10.30 ........

Thanks
 
By using the Round() function.

Code:
Round([YourValue], 1)
 
Thank you very much
 

Users who are viewing this thread

Back
Top Bottom