Do you mean, in B1:
=IF(A1="","",RANK(A1,$A$1:$A$5)&IF(OR(RIGHT(RANK(A1,$A$1:$A$5),2)+0={11,12,13}),"th",LOOKUP(RIGHT(RANK(A1,$A$1:$A$5),1)+0,{0,1,2,3,4;"th","st","nd","rd","th"})))
copied down?
The above will repeat rank if duplicate value found...
If you don't want repeat:
=IF(A1="","",RANK(A1,$A$1:$A$5)+COUNTIF($A$1:$A1,A1)-1&IF(OR(RIGHT(RANK(A1,$A$1:$A$5)+COUNTIF($A$1:$A1,A1)-1,2)+0={11,12,13}),"th",LOOKUP(RIGHT(RANK(A1,$A$1:$A$5)+COUNTIF($A$1:$A1,A1)-1,1)+0,{0,1,2,3,4;"th","st","nd","rd","th"})))
to avoid repeated calculations, you can use a helper column with just:
=IF(A1="","",RANK(A1,$A$1:$A$5)+COUNTIF($A$1:$A1,A1)-1)
in it
then in next column:
=IF(A1="","",B1&IF(OR(RIGHT(B1,2)+0={11,12,13}),"th",LOOKUP(RIGHT(B1,1)+0,{0,1,2,3,4;"th","st","nd","rd","th"})))
adds the endings.
Bookmarks