Averageif?

tlindeman

Active Member
Joined
Jun 29, 2005
Messages
313
I have a column of Data, in column DG. What I would like to do is throw out the outliers and average it. In other words I want to averageif the data is between -5 and 5. I have office 2007.

Thank You
Tony
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
You can use an array formula to sieve outliers and take the average of the ultimate sum. You use ctrl+shift+delete to enter array formulas. I read a tutorial about array formulas a while back that literally explained how to do exactly that. Someone will have you answer here shortly. but just be aware that it shouldn't be too hard t otrack down what you need if for any reason your thread goes unanswered.
 
Upvote 0
=AVERAGE(IF(A1:A10 < X))

<?XML:NAMESPACE PREFIX = X,B1 /><X,B1:B10))< p>I don't know if you can use the "And" operator in a formula to do this:

=AVERAGE(IF(A1:A10 < X And A1:A10 > <X A1:A10 And>Y))
</X,B1:B10))<>
 
Upvote 0
I have a column of Data, in column DG. What I would like to do is throw out the outliers and average it. In other words I want to averageif the data is between -5 and 5. I have office 2007.

Thank You
Tony
Try this...

=AVERAGEIFS(DG2:DG20,DG2:DG20,">=-5",DG2:DG20,"<=5")
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,331
Members
452,907
Latest member
Roland Deschain

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