How do you round to 0.5 in excel

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

Guest

In some instances I need to round the results of calculations to the nearest
0.5 before continuing to the next stage
 
In some instances I need to round the results of calculations to the nearest
0.5 before continuing to the next stage

With the Analysis Tool Pak installed:

=MROUND(A1, 0.5)

Without the ATP installed:

=ROUND(A1/0.5,0)*0.5

--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

rounding to nearest .5 in vba 12
Rounding 0.5 to 1 6
Rounding to nearest 0.5 in Excel 2007 4
rounding 2
Number Format 1
rounding to nearest 0.5 in excel 4
Round(0.5) returns 0. 7
rounding is not consistant 3

Back
Top