Average

cahickm2

Board Regular
Joined
May 14, 2007
Messages
101
I need help with an average function. I have 8 colums of data. column A cotains the name of the hardware, B-H contain values for the week. I need to average column b-h where it doesn't include the maximum and minimum value for each row.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
i Need Help With An Average Function. I Have 8 Colums Of Data. Column A Cotains The Name Of The Hardware, B-h Contain Values For The Week. I Need To Average Column B-h Where It Doesn't Include The Maximum And Minimum Value For Each Row.

=trimmean(b2:h2,2/count(b2:h2))
 
Upvote 0
or this:
=SUMPRODUCT(--(B1:H1<MAX(B1:H1)),--(B1:H1>MIN(B1:H1)),--(B1:H1))/5
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,150
Members
448,552
Latest member
WORKINGWITHNOLEADER

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