how do I round a column of numbers to the nearest

  • Thread starter Thread starter Suzy
  • Start date Start date
Hi,

Depending on exactly what you mean,
Look at each of these:
ROUNDUP(X,2)
CEILING(X,2)

MROUND(27.51,.50) rounds to the nearest 50 cents.

If this helps, please click the Yes button,

Cheers,
Shane Devenshire
 
It looks like you want to round to the nearest quarter.

If you have the Analysis ToolPak add-in installed (versions of Excel prior
to Excel 2007):

=MROUND(A1,0.25)
 
Back
Top