I am trying to get the rank of a number in a list excluding duplicates. See below for sample data and result desired. If I use the rank formula, the results go from 1-8. I would like the results to be sequential instead so there are no numbers skipped. let me know of any ways to get around this - thanks!
# Desired Results Rank Formula
113 1 1
364 2 2
407 3 3
407 3 3
427 4 5
752 5 6
805 6 7
861 7 8
861 7 8
861 7 8
# Desired Results Rank Formula
113 1 1
364 2 2
407 3 3
407 3 3
427 4 5
752 5 6
805 6 7
861 7 8
861 7 8
861 7 8