Call Center Stat Help: Ranking Full-Time and Part-Time Employees

Joined
Dec 8, 2021
Messages
26
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Hi, I have a multi page spreadsheet that is calculating the averages of specifc call center metrics and provides us with an overall grade/ranking for thhe employees. One metrics is Average Unavailable Percentage. Basically if 100% = the total time our Agent was logged on to the sysetem we measure how much if that 100 % was spent in a non working mode. That is what I am measuring here.
In my attached image I am showing what I want the calculation to do.

The thing I'm stumped by is how to rank ALL employees when there is a mix of Full-Time(FT) and Part-Time(PT) employees, each have a different range of allowable unavailable time a month.

1639022451839.png


%-FT have a range of 9.26% - 21.11 % while PT has a range of 4.17%-11.25%. How do you calculate such to trigger a Pass or Fail in column D AND rank them based upon whoever is closest to the MINIMUM with out going below Minimum. If you notice anything below minimum is worse than being over.

Please assist, thank you
 

Attachments

  • 1639022245894.png
    1639022245894.png
    40.8 KB · Views: 5

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Welcome to the MrExcel forum!

Try:

Book1
ABCDEF
1Unavailable PercentageMinimumMaximum
2FT9.26%21.11%
3PT4.17%11.25%
4
5First NameLast NameUnavailable %Pass/FailRankShift
6Agent120.13%Pass4FT
7Agent222.37%fail7FT
8Agent34.19%Pass1PT
9Agent47.00%Pass2PT
10Agent59.20%fail5FT
11Agent614.84%fail6PT
12Agent717.00%Pass3FT
13
Sheet8
Cell Formulas
RangeFormula
D6:D12D6=IF(AND(C6>=VLOOKUP(F6,$B$2:$E$3,2,0),C6<=VLOOKUP(F6,$B$2:$E$3,4,0)),"Pass","fail")
E6:E12E6=SUMPRODUCT(--($C$6:$C$12-VLOOKUP($F$6:$F$12,$B$2:$E$3,2,0)+($D$6:$D$12="fail")*100<=C6-VLOOKUP(F6,$B$2:$E$3,2,0)+(D6="fail")*100))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D6:D12Cell Valuecontains "fail"textNO
 
Upvote 0
Hello sir, thank you for your assistance and taking the time to help. The only thing missing is ranking those who are below the minimum as worse than those under. Agent 5 should be last place because they did not take enough break time which is bad because they are working against state employment laws and the company can get in trouble. Is there a way to rank those as a negative?

I do appreciate you!
 
Upvote 0
Hello sir, thank you for your assistance and taking the time to help. The only thing missing is ranking those who are below the minimum as worse than those under. Agent 5 should be last place because they did not take enough break time which is bad because they are working against state employment laws and the company can get in trouble. Is there a way to rank those as a negative?

I do appreciate you!
worse than those who are OVER not under, my apologies
 
Upvote 0
Welcome to the MrExcel forum!

Try:

Book1
ABCDEF
1Unavailable PercentageMinimumMaximum
2FT9.26%21.11%
3PT4.17%11.25%
4
5First NameLast NameUnavailable %Pass/FailRankShift
6Agent120.13%Pass4FT
7Agent222.37%fail7FT
8Agent34.19%Pass1PT
9Agent47.00%Pass2PT
10Agent59.20%fail5FT
11Agent614.84%fail6PT
12Agent717.00%Pass3FT
13
Sheet8
Cell Formulas
RangeFormula
D6:D12D6=IF(AND(C6>=VLOOKUP(F6,$B$2:$E$3,2,0),C6<=VLOOKUP(F6,$B$2:$E$3,4,0)),"Pass","fail")
E6:E12E6=SUMPRODUCT(--($C$6:$C$12-VLOOKUP($F$6:$F$12,$B$2:$E$3,2,0)+($D$6:$D$12="fail")*100<=C6-VLOOKUP(F6,$B$2:$E$3,2,0)+(D6="fail")*100))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D6:D12Cell Valuecontains "fail"textNO
Not sure if you will see my message above since I didn't select "reply" so here it is lol :)
 
Upvote 0
I was afraid you'd want that. Try:

Book1
ABCDEFG
1Unavailable PercentageMinimumMaximum
2FT9.26%021.11%
3PT4.17%011.25%
4
5First NameLast NameUnavailable %Pass/FailRankShift
6Agent120.13%Pass4FT0.1087
7Agent222.37%fail5FT100.0126
8Agent34.19%Pass1PT0.0002
9Agent47.00%Pass2PT0.0283
10Agent59.20%fail7FT200.0006
11Agent614.84%fail6PT100.0359
12Agent717.00%Pass3FT0.0774
13
Sheet8
Cell Formulas
RangeFormula
D6:D12D6=IF(PRODUCT(C6-VLOOKUP(F6,$B$2:$E$3,{2,4},0))>0,"fail","Pass")
E6:E12E6=RANK(G6,$G$6:$G$12,1)
G6:G12G6=IF(C6<VLOOKUP(F6,$B$2:$E$3,2,0),200+VLOOKUP(F6,$B$2:$E$3,2,0)-C6,IF(D6="fail",C6-VLOOKUP(F6,$B$2:$E$3,4,0)+100,C6-VLOOKUP(F6,$B$2:$E$3,2,0)))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D6:D12Cell Valuecontains "fail"textNO


The size of the E formula was getting out of hand, so I made a helper column in G. You can hide that column if you want. Then the E formula is pretty simple. I found a shorter formula for the D column (but it's a bit more arcane, so you may want to stick with the first one).
 
Upvote 0
Solution
I was afraid you'd want that. Try:

Book1
ABCDEFG
1Unavailable PercentageMinimumMaximum
2FT9.26%021.11%
3PT4.17%011.25%
4
5First NameLast NameUnavailable %Pass/FailRankShift
6Agent120.13%Pass4FT0.1087
7Agent222.37%fail5FT100.0126
8Agent34.19%Pass1PT0.0002
9Agent47.00%Pass2PT0.0283
10Agent59.20%fail7FT200.0006
11Agent614.84%fail6PT100.0359
12Agent717.00%Pass3FT0.0774
13
Sheet8
Cell Formulas
RangeFormula
D6:D12D6=IF(PRODUCT(C6-VLOOKUP(F6,$B$2:$E$3,{2,4},0))>0,"fail","Pass")
E6:E12E6=RANK(G6,$G$6:$G$12,1)
G6:G12G6=IF(C6<VLOOKUP(F6,$B$2:$E$3,2,0),200+VLOOKUP(F6,$B$2:$E$3,2,0)-C6,IF(D6="fail",C6-VLOOKUP(F6,$B$2:$E$3,4,0)+100,C6-VLOOKUP(F6,$B$2:$E$3,2,0)))
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D6:D12Cell Valuecontains "fail"textNO


The size of the E formula was getting out of hand, so I made a helper column in G. You can hide that column if you want. Then the E formula is pretty simple. I found a shorter formula for the D column (but it's a bit more arcane, so you may want to stick with the first one).
You are AMAZING!!!! <3
 
Upvote 0

Forum statistics

Threads
1,215,020
Messages
6,122,712
Members
449,093
Latest member
Mnur

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