Specify columns in which to sort according to the principle of room numbers.

Call:

ts_table(iTable, "set_columns_to_sort_as_LikeABC10_a");


or

ts_table(iTable,"set_columns_to_sort_as_LikeABC10_a",
intcolnum1/stringcolname1,
intcolnum2/stringcolname2,
...
intcolnumN/stringcolnameN
);



Here:

colnumN - number of the column in which the value will be sorted as ABC10_a;

colname1 - the same can be set with the name of the column.


The previous assignment of columns with sort ABC10_a is cancelled.

By default, all columns are sorted normally.

If you specify a command without a list of columns, then all columns will be normal.


Example:

Sort the table by the column with room numbers ("Room 1001.b1", "ROOM 1001.a", etc.).


ts_table(iTable, "set_columns_to_sort_as_LikeABC10_a", "Room number");
set summation by columns:
ts_table(iTable,"sort","Room number");