The formula takes the sum of the 3, and then subtracts a certain amount based on the standard deviation of the three numbers.
The standard deviation for a score of 4-4-4 would be 0, so nothing would be subtracted, and the score would be 12. A score of 10-10-1 will have the highest standard deviation possible (5.19, to be exact), and using this number a certain percentage of the score is subtracted (50% in this case) to result in a score of 10.5. You can change the weights in column N, but what is there now seem to work well.
If you cannot follow the Vlookup part, search online for a better explanation than I can give you, specifically vlookup with "true" at the end, rather than "false". Hope that helps!
---------- Post added at 02:03 PM ---------- Previous post was at 01:59 PM ----------
My formula did not take into account that you wanted a score to automatically be zero if you gave any category a rank of zero. here is the formula including that:
Formula:
=IF(COUNTIF(B2:B4,0)>0,0,SUM(B2:B4)-(SUM(B2:B4)*VLOOKUP(STDEV(B2:B4),$M$2:$N$8,2,TRUE)))
Bookmarks