Rounding to a quarter of a percent

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to round a list of numbers to the nearest quarter of a percent.

e.g. 0.0419 to 4.25%
0.0158 to 1.50%
0.0639 to 6.50%
0.0885 to 8.75%

Is there a simple function to do this or will I have to do countless nested
if statements.
 
It worked. Thanks.

Allen Browne said:
How about:

Round(4 * [Field1], 2) / 4

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

D Huber said:
I am trying to round a list of numbers to the nearest quarter of a percent.

e.g. 0.0419 to 4.25%
0.0158 to 1.50%
0.0639 to 6.50%
0.0885 to 8.75%

Is there a simple function to do this or will I have to do countless
nested
if statements.
 
Back
Top