T TimTDP Registered User. Local time Today, 15:18 Joined Oct 24, 2008 Messages 213 Feb 13, 2014 #1 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
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
Mile-O Back once again... Local time Today, 13:18 Joined Dec 10, 2002 Messages 11,304 Feb 13, 2014 #2 By using the Round() function. Code: Round([YourValue], 1)
T TimTDP Registered User. Local time Today, 15:18 Joined Oct 24, 2008 Messages 213 Feb 13, 2014 #3 Thank you very much