though i don't exactly understand your question, here my approach to clarify what RANK
exactly does:
=RANK(value, all_values, ordering)
whereas it returns the RANK of value
out of the list of all_values
. If ordering
is 0, the function sorts descending, if 1 it sorts ascending.
you might consider this example for better understanding. It shows pretty well how to use the function.
the 3rd parameter of RANK
(you provide the value of A43 here) is either 0 or 1 for descending or ascending ordering, respectively, and not for the selection of the value you want the rank of.
or am I getting you completely wrong?
regards