Reputation: 11
I need some assistance in order to work it out for salary purpose last two digits of decimal points as follws
examples:
By Apllying the above principles
if the amount is 79.109 have to change it to 79.100
if the amount is 132.528 have to change it to 132.525
if the amount is 258.739 have to change it to 258.750
if the amount is 452.264 have to change it to 452.275
And also if the amount is 124.998 have to change it to 125.000
Upvotes: 1
Views: 185
Reputation: 46341
With data in A1 try this formula in B1 to round as required
=ROUND(A1*4,1)/4
Edit: MROUND is another possibility, i.e.
=MROUND(A1,0.025)
....but MROUND is only a native excel function in Excel 2007 and later (in Analysis ToolPak in earlier versions)
Upvotes: 2