• Resolved sylo18

    (@sylo18)


    I have a player list with top appearances, but when two or more players have the same number of appearances, I wont it to then sort by number of wins.

    So to clarify, if two players have played 10 games but one of them has won 7 and the other has won 3, then the player with 10 win would be above the player with 3

    at the moment it seems to order by alphabetical order as the second parameter

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • I am also interested in the possibility of putting several “sorting order”!

    Roch

    (@rochesterj)

    Hi there!

    Although we don’t have an out-of-the-box option for this, you can do it with a column for your ordering.

    You can create a new stat like this:

    Order = Appearances * 1000 + wins

    Then, you can use this stat as your ordering criteria, even if it isn’t visible in your users list. If you want to add more items, you can just use different powers of 10 to separate them, like this:

    Order = A * 1000000000 + B * 1000000 + C * 1000 + D

    In this case, orders are A, then B, then C, then D.

    Thanks!

    Thread Starter sylo18

    (@sylo18)

    cool I think that worked!

    Roch

    (@rochesterj)

    I’m glad it’s resolved!

    Let us know if you need anything else.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Player list Second sorting parameter’ is closed to new replies.