Data > Sort

The sort utility sorts a number of data columns by data up to four columns. You can store the sorted data in its original columns or in a specific set of columns.

If a column contains only numbers, the data will be sorted by their numerical values. Otherwise, the data will be sorted as text in alphabetically order.

Example

C1C2C3
a 2 5
b 2 7
c 2 3
d 2 2
e 1 9
f 1 8
g 1 7
h 1 6

The result of sorting C1 by C2 and C3 is
h
g
f
e
d
c
a
b