Excel. How to round a number to nearest half number?

B

bpeltzer

With the Analysis Tool Pak add in you can use =mround(A1,0.5).
Otherwise, I'd double the number, round, then divide by two: =round(2*A1,0)/2
 
H

HaraldS

Thank you!!! This will help me!

bpeltzer said:
With the Analysis Tool Pak add in you can use =mround(A1,0.5).
Otherwise, I'd double the number, round, then divide by two: =round(2*A1,0)/2
 
Top