I call it a scorecard...

Cat743

New Member
Joined
Dec 16, 2017
Messages
1
I have a list of criteria, 1 through, for example, which measures different aspects of a "deal", rates it simply if it is complete or completed accurately or not. The criteria list will be weighted based on importance. Not all the criteria will be applicable. so either 1, 0, or N\A with final score for each based on 100 maximum points. But how do I create a scoring matrix to which will score consistently from one deal to the next. For example if deal #1 only has 8 of 10 criteria applicable versus the next deal #2 has 10 of 10 criteria applicable, how can these two be scored and compared consistently without the lesser used criteria deal score being impacted as a result of using less fields. make sense? Any insight on how to set up appreciated!!
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Welcome to the forum.

You could sum the complete aspects, then scale it to 100 based on what aspects were used in the deal:

ABCDE
1CriteriaWeightsComplete?Score:
2A5075.90361
3B101
4C101
5D151
6E50
7F201
8G10N/A
9H100
10I7N/A
11J81

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

Array Formulas
CellFormula
E2{=SUMPRODUCT(B2:B11,C2:C11)/SUM(IF(ISNUMBER(C2:C11),B2:B11))*100}

<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
So, if the 10 criteria (one per column) is in columns B:K, cell L2:
Code:
=SUM(B2:K2)/COUNTIFS(B2:K2,"<>N/A",B2:K2,"<>"&"")
 
Upvote 0

Forum statistics

Threads
1,216,566
Messages
6,131,437
Members
449,652
Latest member
ylsteve

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