OK, it’s Sunday morning and the brain is foggy.
I have a set of numbers, say
2
5
2
4
4
3
I want to rank them from lowest to highest. Using the RANK formula would give
1
6
1
4
4
3
What I’d like instead is that the rankings be done in groups so that the 2nd smallest set of numbers is given the rank 2, the 3rd small set of numbers is given the rank of 3. RANK accounts for ties among the n-th smallest group but gives the next highest group a rank that accounts for all the numbers in the lower groups. What I want for the above data set is
1
4
1
3
3
2
I know how, using an Array Formula, to find how many unique entries there are in the list. Can’t go from there to the above ranking.
TIA
Fred