View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
joeu2004 joeu2004 is offline
external usenet poster
 
Posts: 2,059
Default Average rounded to nearest 0.50


"Anthony" wrote:
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