Table: sort by multiple columns?
How can I sort a table by multiple columns.
In a data table, when I select multiple columns and sort the table via right click: the table is always sorted from "left to right" - the sort column on the left is the dominant one
... even if I change the order in which I select the columns. Via JSL, I can adjust the order:dt << Sort(By( :sex, :age ));
dt << Sort(By( :age, :sex ));
How to do the trick ...