Team Scorecard using If Function

anthoncl

New Member
Joined
Dec 2, 2021
Messages
9
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
I am trying to create a scorecard for the team with weightage based on the parameters set.
E.g. if CellB12 score is >=12% it should populate 1 point, if 11%-11.9% it should give 2 point , if 10%-10.9% then 3 points and so on

Points
1​
2​
3​
4​
5​
Para 1>=12%11%-11.9%10%-10.9%9.99% - 9%<9%
Para 2>=9%8.1%-8.9%7%-7.9%6.1%-6.9%<6%


Once I got all the points then it should multiply by the weightage percentage.
ScoreWeightageEmp 2Emp 3Emp 4Emp 5Emp 6
0-30 delinquency bucket to be within 10 %
10%​
0.5​
4​
0.1​
0.1​
0.3​
31-60 delinquency bucket to be within 7%
15%​
0.75​
0.75​
3​
0.75​
0.75​
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
List your data, from B2 to F2, as 99%, 11.99999%, 10.99999%, 9.99999%, 8.99999%
Then, if in B12 is the score then you can get your information using the formula
Code:
=MATCH(B9,B2:F2,-1)

This is dimonstrated in Row 2 and cell C12 of the attached XL2BB minisheet

However I this it is more intuitive lista the data in increasing order; ie, in B4:F4: 0.00%, 9.00%, 10.00%, 11.00%, 12.00%
With this serie in B4:F4 and the scrore in B12 you can get your information using the formula
Code:
=COLUMNS(B4:F4)-MATCH(B12,B4:F4)+1

I used the following "Customized formatting type" to show the serie in a more meaningful way:
-for B2:F2, <#.##0,0%;-#.##0%;<#0%
-for B4:F4, >#.##0,0%;-#.##0%;>#0%
The result is shown in the attached image

To create the correct Type for your language, see

MULTI_C21107.xlsm
ABCDEFGH
1Points12345
2Para 1<99,0%<12,0%<11,0%<10,0%<9,0%
354321
4Para 1>0%>9,0%>10,0%>11,0%>12,0%
5Para 1>=12%11%-11.9%10%-10.9%9.99% - 9%<9%
6
7
8
9
10
11
128,9%5=MATCH(B9,B2:F2,-1)
135=COLUMNS(B4:F4)-MATCH(B12,B4:F4)+1
14
15
Foglio10
Cell Formulas
RangeFormula
C12C12=MATCH(B12,B2:F2,-1)
C13C13=COLUMNS(B4:F4)-MATCH(B12,B4:F4)+1
 

Attachments

  • ANTHONCL_Immagine 2022-11-11 152552.jpg
    ANTHONCL_Immagine 2022-11-11 152552.jpg
    61.9 KB · Views: 1
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,509
Members
449,089
Latest member
RandomExceller01

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