How to get top 20% or Low 20%

vishan_rana

New Member
Joined
Feb 22, 2012
Messages
20
Dear All,

i Have a data with branch and its TAT as follows,

BranchTAT
A4
A2
A3
A3
A4
B4
B2
B3
B3
B4
B8

<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>

I want to take A and B's average of highest 20% and average of lowest 20%.

Pls suggest me a formula.

thanks in advance.

Regards
Vishan
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi,

Assume you have 24 items of data, so that 20% is either 4 or 5 items, depending on whether you round 20% down or up. Which of these two possibilities you choose?

J.Ty.
 
Upvote 0
Some sort of array formula would work. Something like this maybe - assuming your range is from A2:B12

=AVERAGEIFS($B$2:$B$12,$A$2:$A$12,D$1,$B$2:$B$12,">="&PERCENTILE(IF($A$2:$A$12=D$1,$B$2:$B$12,""),0.8))

Don't forget Ctrl + Shift + Enter
 
Upvote 0
Dear cb366374,

Your solution is wrong. You cannot use percentile. Imagine the following example data, from which you want to get the average of the lowest 20%:

1 2 2 2 2 2 2 2 2 3.


20% means two numbers: in this case 1 and 2, so the desired average is 1.5.

However, if you use percentile, which in this case is 2, you take into account all numbers which are <= than the percentile, so you produce the average of 1 2 2 2 2 2 2 2 2, which is 1.888889.


J.Ty.

<colgroup></colgroup><tbody>
</tbody>
 
Upvote 0
Good point. Theoretically, they could want to include all the 2's in their average. However, for the more likely scenario that you point out, something like this should work:

for largest 20%
=SUM(LARGE($B$2:$B$21,ROW(INDIRECT("1:"&0.2*COUNTIF($A$2:$A$21,H$1)))))/(0.2*COUNTIF($A$2:$A$21,H$1))

for smallest 20%
=SUM(SMALL($B$2:$B$21,ROW(INDIRECT("1:"&0.2*COUNTIF($A$2:$A$21,H$1)))))/(0.2*COUNTIF($A$2:$A$21,H$1))


There's a probably as easier way to populate an array than the row/indirect/count method I used but it worked for me.

Edit: This is wrong. Grabbed the wrong formula...i'll be back momentarily
 
Last edited:
Upvote 0
I produced the following formula for the lowest 20%, in case you round 20% down to the nearest integer:

Code:
=(SUMIFS(B1:B20,A1:A20,"A",B1:B20,"<"&SMALL(IF(A1:A20="B",10^30,B1:B20),QUOTIENT(COUNTIF(A1:A20,"A"),5)))+SMALL(IF(A1:A20="B",10^30,B1:B20),QUOTIENT(COUNTIF(A1:A20,"A"),5))*(QUOTIENT(COUNTIF(A1:A20,"A"),5)-COUNTIFS(A1:A20,"A",B1:B20,"<"&SMALL(IF(A1:A20="B",10^30,B1:B20),QUOTIENT(COUNTIF(A1:A20,"A"),5)))))/QUOTIENT(COUNTIF(A1:A20,"A"),5)

It is an array formula, so it should be confirmed with Ctr+Shift+Enter. It assumes that the numbers to be averaged are smaller than 10^30.

J.Ty.
 
Upvote 0
Sorry about that. Here are the correct formulas. Column A would be the Branch column, Column B would be TAT, and cell H1 is just a user input of A or B.

Top 20%
=SUM(LARGE(IF($A$1:$A$20=$G$1,$B$1:$B$20),ROW(INDIRECT("1:"&ROUNDDOWN(0.2*COUNTIF($A$1:$A$20,G$1),0)))))/(ROUNDDOWN(0.2*COUNTIF($A$1:$A$20,G$1),0))

Bottom 20%
=SUM(SMALL(IF($A$1:$A$20=$G$1,$B$1:$B$20),ROW(INDIRECT("1:"&ROUNDDOWN(0.2*COUNTIF($A$1:$A$20,G$1),0)))))/(ROUNDDOWN(0.2*COUNTIF($A$1:$A$20,G$1),0))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,102
Messages
6,128,851
Members
449,471
Latest member
lachbee

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