The "sumrank" works, but when I encounter a tie in rank, I run into a pickle. For example, lets say the 1st ranked numeral is 30%, 2nd is 25%, 3rd ranked numeral is 20%, and there is a tie for 4th (say 10%). Under the formulas, the array would look like this:
30%, 55%, 75%, 85%, 85%
Since there is a tie for the 4th ranked sumrank, the formula naturally recognizes the tie for 4th as equal. What I'd like to do is add up any ties, so that when I encounter such a tie, I would get this result:
30%, 55%, 75%, 85%, 95%
Any advice based on the above thread?