Question
Auto Numbering List
I'm working on a prediction game and I would appreciate some advice as to whether it is possible to auto generate the players positional numbers depending on total points scored. At the moment I don't include positions but just order the returned data in ascending order. The problem is when 2 or more players have the same score. I would like to achieve something like below:
| Position | Player | Score |
|---|---|---|
| 1 | Player 1 | 20 |
| 2= | Player 2 | 15 |
| 2= | Player 3 | 15 |
| 4 | Player 4 | 10 |
I hope that makes sense. Any help would be great.
