> For the complete documentation index, see [llms.txt](https://sunaryayalasatriathito.gitbook.io/playerlistdeluxe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sunaryayalasatriathito.gitbook.io/playerlistdeluxe/configuration/sorting-feature.md).

# Sorting Feature

## Introduction

Sorting Feature allows you to sort tablist entry.

## How to use it

Most of Tablist Handler supports Sorting. It usually use field `sorter`to sort it. Just put placeholder that represent the order into the field. Example:

```yaml
...
    sorter: '{team_color};{vault_eco_balance}'
    # this will sort by team color, and then the balance
...
```

### Changing the sort order

You can use field `order` to make the order from high to low (`DESCEND`) or low to high (`ASCEND`).

### Multiple Sorter with Different Order

You can have 2 or more sorter placeholder with different order

```yaml
...
    sorter: '{team_color};!{vault_eco_balance}'
    # this will sort the team_color ASCENDly, and then vault_eco_balance DESCENDly
...
```
