Right now i have the following in A1:B9
Code Name
D 12
D 23
F 45
E 32
F 67
F 90
S 19
S 26
and my conditional rank with formula copied down from C2 to C9 is:
=IF(A2="F",SUMPRODUCT(($A$1:$A$9=A2)*(B2>$B$1:$B$9))+1,"")
and I am getting this:
Code Name Rank By Letter F
D 12
D 23
F 45 1
E 32
F 67 2
F 90 3
S 19
S 26
Is there a way i could change the current ascending order to descending so i could get this:
Code Name Rank By Letter F
D 12
D 23
F 45 3
E 32
F 67 2
F 90 1
S 19
S 26
Thank you!
Code Name
D 12
D 23
F 45
E 32
F 67
F 90
S 19
S 26
and my conditional rank with formula copied down from C2 to C9 is:
=IF(A2="F",SUMPRODUCT(($A$1:$A$9=A2)*(B2>$B$1:$B$9))+1,"")
and I am getting this:
Code Name Rank By Letter F
D 12
D 23
F 45 1
E 32
F 67 2
F 90 3
S 19
S 26
Is there a way i could change the current ascending order to descending so i could get this:
Code Name Rank By Letter F
D 12
D 23
F 45 3
E 32
F 67 2
F 90 1
S 19
S 26
Thank you!