Weighted scores with some weightings the full 100%

Ghost141

New Member
Joined
Dec 7, 2023
Messages
12
Office Version
  1. 365
Platform
  1. Windows
Hello!

Im trying to work out a formula to calculate weightings based on scores, with some metrics being critical and worth the full 100%.

Essentially, the metrics worth 100% would create an immediate fail, where as the ones worth 20% would have to have 5 failings for 100%, otherwise 2 = 40% ETC.

Book1
ABC
1MetricFailingsWeighting
2a020%
3b020%
4c020%
5d020%
6e0100%
7f020%
8g520%
9h020%
10i20%
11j20%
12k0100%
13l0100%
14m020%
15n020%
Sheet1


Thanks heaps!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
not following
are you trying to put a formula in column C
based on the value in column B
OR column B based on C
really not following sorry

can you provide a sample = with ALL expected results and some notes to say how arrived at

IN C
=B2/5

Book2
ABC
1metricfailsweighting
2120%
300%
4240%
5360%
6480%
75100%
8120%
900%
Sheet2
Cell Formulas
RangeFormula
C2:C9C2=B2/5
 
Upvote 0
Sorry the formula would be in cell B16, this would be the score based on the number of errors found * their weighting, but keeping 100% the max, so even if they had 3 failings worth 20% each, and 2 failings worth 100% each, the total score would be 100% (fail).
 
Upvote 0
=MIN(SUM(B2:B9)/5,1)

Book2
ABC
1metricfailsweighting
2120%
300%
4120%
5240%
600%
700%
800%
900%
10
11480%
Sheet2
Cell Formulas
RangeFormula
C2:C9C2=B2/5
B11B11=SUM(B2:B9)
C11C11=MIN(SUM(B2:B9)/5,1)




Book2
ABC
1metricfailsweighting
2120%
300%
4120%
5240%
65100%
75100%
85100%
95100%
10
1124100%
Sheet2
Cell Formulas
RangeFormula
C2:C9C2=B2/5
B11B11=SUM(B2:B9)
C11C11=MIN(SUM(B2:B9)/5,1)
 
Upvote 0
thats great but only works if all the metrics are worth 20%. Heres some examples of the outcomes expected:
Please note the occasions where some metrics are blank as they may be not applicable (unsure if thats going to influence the formula)

Book1
ABCDEFGHIJKL
1MetricFailingsWeightingMetricFailingsWeightingMetricFailingsWeightingMetricFailingsWeighting
2a020%a020%a020%a020%
3b020%b020%b20%b20%
4c020%c220%c020%c20%
5d020%d020%d120%d20%
6e1100%e0100%e0100%e0100%
7f020%f020%f020%f020%
8g020%g020%g20%g020%
9h020%h120%h020%h020%
10i20%i020%i120%i020%
11j20%j020%j420%j020%
12k0100%k0100%k1100%k0100%
13l0100%l0100%l0100%l0100%
14m020%m020%m020%m020%
15n020%n020%n020%n120%
16Score100%1 failing worth 100%Score60%3 failings worth 20% eachScore100%5 failings worth 20% each and 1 failing worth 100%, but max score is 100%)Score20%1 failing worth 20%
Sheet1
 
Upvote 0
how about
=MIN(SUMPRODUCT(B2:B15,C2:C15),1)

Book2
ABCDEFGHIJKL
1MetricFailingsWeightingMetricFailingsWeightingMetricFailingsWeightingMetricFailingsWeighting
2a00.2a00.2a00.2a00.2
3b00.2b00.2b0.2b0.2
4c00.2c20.2c00.2c0.2
5d00.2d00.2d10.2d0.2
6e11e01e01e01
7f00.2f00.2f00.2f00.2
8g00.2g00.2g0.2g00.2
9h00.2h10.2h00.2h00.2
10i0.2i00.2i10.2i00.2
11j0.2j00.2j40.2j00.2
12k01k01k11k01
13l01l01l01l01
14m00.2m00.2m00.2m00.2
15n00.2n00.2n00.2n10.2
16Score11 failing worth 100%Score0.63 failings worth 20% eachScore15 failings worth 20% each and 1 failing worth 100%, but max score is 100%)Score0.21 failing worth 20%
17
18
19100%60%100%20%
Sheet3
Cell Formulas
RangeFormula
B19,K19,H19,E19B19=MIN(SUMPRODUCT(B2:B15,C2:C15),1)
 
Upvote 1

Forum statistics

Threads
1,215,200
Messages
6,123,604
Members
449,109
Latest member
Sebas8956

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