Average rounded to nearest 0.50

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.
 
J

JoeU2004

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
 
S

Sean Timmons

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

Should get you.
 
J

JoeU2004

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 -----
 
A

Anthony

=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.
 

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

Top