Display same rank when score is the same

Yes, this behaviour is configurable via the score ranking strategy setting:

  • dense_rank (default) - Produces the tie behaviour shown in your screenshot
  • rank - Tied rows get the same rank, next rank is incremented by number of tied rows
  • row_number - Produces the tie behaviour shown in the original post
3 Likes