Rounding averages

gentleman9

New Member
Joined
Sep 21, 2006
Messages
5
Ok I'm now trying to round an average of three cells up/down to the nearest 0.5 I've tried:

=ROUND(AVERAGE(A11:C11),1)

how did I screw this formula up?
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Try...

=ROUND(AVERAGE(A11:C11)/0.5,0)*0.5

Hope this helps!
 
Upvote 0
Try this:
=CEILING(A11:C11,0.5)

edit: it's not quite what you are looking for as it always rounds up
 
Upvote 0
Hi gentleman9,

You will need to use the MROUND function, which is part of the Analysis ToolPak. The Analysis ToolPak can be found in the Tools -> Add-Ins... menu.

Then the formula is

Code:
=MROUND(AVEAGE(A11:C11),0.5)

Hope this helps!

PS -- You may have to install the Analysis ToolPak from Microsoft Office CDs.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top