Hi Dna Team,
I’m building a League Table as described Below.
Contractor | Projects Available | Won | Lost | W/L Ratio | Rank Cost | Rank Time | Rank Total |
---|---|---|---|---|---|---|---|
Contractor A | 105 | 26 | 79 | 25% | 4 | 3 | x |
Contractor B | 105 | 22 | 83 | 21% | 2 | 10 | x |
Contractor C | 105 | 16 | 89 | 15% | 7 | 1 | x |
Contractor D | 105 | 14 | 91 | 13% | 5 | 9 | x |
Contractor E | 105 | 8 | 97 | 8% | 10 | 6 | x |
Contractor F | 105 | 7 | 98 | 7% | 9 | 7 | x |
Contractor G | 105 | 5 | 100 | 5% | 1 | 8 | x |
Contractor H | 105 | 5 | 100 | 5% | 3 | 2 | x |
Contractor I | 105 | 2 | 103 | 2% | 8 | 4 | x |
So far a successfully Ranked Both Rank Cost and Rank Time using a Rankx Function.
Rank MC Cost = RANKX( ALL(‘Contractor Cost Predictability’[Contractor]), [Total CP],ASC)
Rank MC Time = RANKX(ALL(‘Contractor Cost Predictability’[Contractor]), [Total TP],ASC)
However, I need some help to expand my Total Rank Measure to take in account for the Contractors Win/ loss Ratio. Ultimately my goals in to rank all the contractors fairly based on win/loss, Cost and Time.
Thanks in advance.
Adam