Average rounded to nearest 0.50

  • Thread starter Thread starter Anthony
  • Start date Start date
A

Anthony

How do I round an average of three numbers down to the nearest 0.50
assuming the three numbers are in cells a1, b1, and c1 and the formula
will be in cell d1. Also, how do I do the same but round up to the
nearest 0.50.
 
Anthony said:
How do I round an average of three numbers down to the nearest 0.50
assuming the three numbers are in cells a1, b1, and c1 and the formula
will be in cell d1.

Any of the following:

=ROUND(AVERAGE(A1:C1)*2, 0) / 2

=ROUND(AVERAGE(A1:C1)/0.5, 0) * 0.5

=MROUND(AVERAGE(A1:C1), 0.5)

Also, how do I do the same but round up to the
nearest 0.50.

Either of the following:

=ROUNDUP(AVERAGE(A1:C1)*2, 0) / 2

=ROUNDUP(AVERAGE(A1:C1)/0.5, 0) * 0.5
 
Errata....

Sorry, had the subject line in mind ("rounded to nearest 0.50" and missed
the word "down" here.

Any of the following:
=ROUND(AVERAGE(A1:C1)*2, 0) / 2
=ROUND(AVERAGE(A1:C1)/0.5, 0) * 0.5
=MROUND(AVERAGE(A1:C1), 0.5)

Change ROUND to ROUNDDOWN. And MROUND is no longer an option.


----- original message -----
 
=ROUNDDOWN(AVERAGE(A1:C1)*2,0)/2
=ROUNDUP(AVERAGE(A1:C1)*2,0)/2

Should get you.





- Show quoted text -

Thank you very much for the assist. The formulas work perfectly.
JoeU, thanks for replying also.
 
Back
Top