I have a situation in which I would like to sort a list based on multiple params if possible. In my case, it’s a table with some statistics in. So, if two rows have the same value in column 1, I would like for them to be sorted by the value in column 2.
name | col1 | col2 | col3
test1 | 3 | 2 | 0
test2 | 3 | 1 | 0
test3 | 2 | 2 | 0
Something like that. Is this possible?