S Suzy Nov 12, 2008 #1 How do I round a column of numbers up or down? ei. $27.51 = $27.50 and $29.24 = $29.25?
S Shane Devenshire Nov 12, 2008 #2 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
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
T T. Valko Nov 12, 2008 #4 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)
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)