Formula to indicate bottom percentage of sales performers based on their results percentages? Number of reps change month to month?

grayjeans

New Member
Joined
Feb 6, 2017
Messages
3
Hey guys. This is my first post on these forums. Never felt the need to ask a question on here but I am completely stuck on how to do this and really need help.

I work for a sales organization and I am working on creating a report that will show which of our sales reps have been in the bottom 50% of performers for an entire quarter. Here is an example of what I am doing and what I need to do:

RepMonth 1 GoalMonth 1 ActualPerformanceRepMonth 2 GoalMonth 2 ActualPerformanceRepMonth 3 GoalMonth 3 ActualPerformance
John150001450097%John150001450097%John150001300087%
Jack150001290086%Jack150001290086%Jack150001250083%
Jane1500017700118%Jane017700-Jane1500018000120%
Peter01200-Peter012400-Peter1500012008%
Paul0600-Paul1000011500115%Paul1500015000100%
Mike150001200080%Mike15000950063%Mike150001200080%
Don2000024500123%Don024500-Don2000025000125%
Aaron2000029000145%Aaron029000-Aaron2000029000145%
Terry200001700085%Terry200001700085%Terry2000024500123%
Lauren200001670084%Lauren200001500075%Lauren200001400070%

<tbody>
</tbody>

As you can see, some reps are on a quota plan for some months, and some are not. So when I say I need the bottom 50% of performers indicated, the number of performers may vary month to month. There are 10 total reps, but if they are not given a "goal" for a particular month, then they are not on a quota plan, and thus do not count when calculating this.

Those in bold are those who are in the bottom half for a particular month (i.e., Month 1: 8 reps on plan--bottom 50% would be bottom 4 reps; Month 2: 6 on plan--bottom would be 3; Month 3: all 10 reps on plan--bottom half is bottom 5 reps). Whether they are on the bottom or not is indicated in the Performance column in each table.

The reps that are in RED are those that have been in the bottom 50% for the entire quarter--these are the reps I need to indicate with a function or something.

How should I go about doing this? In order for a rep to be marked, they have to meet the criteria for ALL THREE MONTHS (bottom half of performers). The criteria never changes (which is bottom performer = bottom 50%) but the number of reps on plan WILL change as I stated above. Therefore, I do not know where to begin.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the forum.

How about:

ABCDEFGHIJKLMN
1RepMonth 1 GoalMonth 1 ActualPerformanceRepMonth 2 GoalMonth 2 ActualPerformanceRepMonth 3 GoalMonth 3 ActualPerformance
2John150001450097%John150001450097%John150001300087%
3Jack150001290086%Jack150001290086%Jack150001250083%
4Jane1500017700118%Jane017700-Jane1500018000120%
5Peter01200-Peter012400-Peter1500012008%
6Paul0600-Paul1000011500115%Paul1500015000100%
7Mike150001200080%Mike15000950063%Mike150001200080%
8Don2000024500123%Don024500-Don2000025000125%
9Aaron2000029000145%Aaron029000-Aaron2000029000145%
10Terry200001700085%Terry200001700085%Terry2000024500123%
11Lauren200001670084%Lauren200001500075%Lauren200001400070%
12
13
14Bottom half performers
15Mike
16Lauren

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Array Formulas
CellFormula
A15{=IFERROR(INDEX($A$2:$A$11,AGGREGATE(15,3,IF(
(RANK($D$2:$D$11,$D$2:$D$11,0)>COUNTIF($D:$D,">0")/2)+
(RANK($I$2:$I$11,$I$2:$I$11,0)>COUNTIF($I:$I,">0")/2)+
(RANK($N$2:$N$11,$N$2:$N$11,0)>COUNTIF($N:$N,">0")/2)=3,
ROW($D$2:$D$11)-ROW($D$2)+1
),ROWS($A$15:$A15)
)
),""
)}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,931
Members
449,480
Latest member
yesitisasport

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