JonnyStout
New Member
- Joined
- Nov 19, 2009
- Messages
- 14
I'm doing a leaderboard and there are over 29 entrants.
I am trying to show what place each person is in and there is also ties.
I was using the Choose function when the entrants were smaller, I didn't know about the 29 limit.
There are 35 entries.
This is the formula I'm using (in this example cell 33):
=IF(OR(A33=A34,A33=A32),"T"&A33,A33)&CHOOSE(A33,"st","nd","rd","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","st","nd","rd","th","th","th","th","th","th","th","st","nd","rd","th","th")
Column A has their ranking and it returns it, T if it's tied with the previous and then the correct suffix.
This works up to 29.
I'm wondering if there is a way of adding the suffix without the Choose function.
Or maybe breaking it down to groups of 10 somewhere and calculate it there and then return but I can't figure it out.
I am trying to show what place each person is in and there is also ties.
I was using the Choose function when the entrants were smaller, I didn't know about the 29 limit.
There are 35 entries.
This is the formula I'm using (in this example cell 33):
=IF(OR(A33=A34,A33=A32),"T"&A33,A33)&CHOOSE(A33,"st","nd","rd","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","th","st","nd","rd","th","th","th","th","th","th","th","st","nd","rd","th","th")
Column A has their ranking and it returns it, T if it's tied with the previous and then the correct suffix.
This works up to 29.
I'm wondering if there is a way of adding the suffix without the Choose function.
Or maybe breaking it down to groups of 10 somewhere and calculate it there and then return but I can't figure it out.