- 1-dimensional array:
"tn" - numeric (=n), ascending
"tn+r" - numeric (=n), descending (=r)
"ts" - alphabetic, ascending, by the system, independently on the active language (=s), case sensitive text
"ts+r" - alphabetic, descending (=r), by the system, independently on the active language (=s), case sensitive text
"tsi" - alphabetic, ascending, by the system, independently on the active language (=s), case insensitive text (=i)
"tsi+r" - alphabetic, descending (=r), by the system, independently on the active language (=s), case insensitive text (=i)
"tl" - alphabetic, ascending, localized, based on the active language (=l), case sensitive text
"tl+r" - alphabetic, descending (=r), localized, based on the active language (=l), case sensitive text
"tli" - alphabetic, ascending, localized, based on the active language (=l), case insensitive text (=i)
"tli+r" - alphabetic, descending (=r), localized, based on the active language (=l), case insensitive text (=i)
- 2-dimensional array:
When sorting by a single column, the column index is entered first (
c0+,
c1+, …), followed by the sorting method (same as for a 1-dimensional array). So sorting by a particular column might look like this, for example:
c0+ts.
When sorting by multiple columns simultaneously, the sorting rules for each column shall be listed in order of importance, separated by a comma (
,). For example:
"c1+ts,c0+tn+r". The resulting array will then be sorted by the second column alphabeticaly ascending and identical items will then be sorted by numeric values of the first column descending.