Sorting is used to arrange items in a list in the desired order. This can be useful when trying to find specific entries or when identifying specific groupings of entries.
A list can be sorted in two ways
When sorting on multiple columns, the order in which you sort the columns determines how the data will be organized. Usually, you must sort the most important information first. For example, to list the employees in alphabetical order for each department, it is most important that everyone is grouped by department. Therefore, you would first sort the Department column, then sort the Employees column.
Notes
In an ascending sort, the Datasheet view uses the following order. In a descending sort, this sort order is reversed except for blank cells, which are always placed last.
Type of data | Sort order |
---|---|
Numbers | Sorted from the smallest negative number to the largest positive number |
Alphanumeric | Sorted left to right, character by character. For example, if a cell contains the text "A100," it is placed after a cell that contains the entry "A1" and before a cell that contains the entry "A11."
Text and text that includes numbers are sorted in the following order: 0 1 2 3 4 5 6 7 8 9 (space) ! " # $ % & ( ) * , . / : ; ? @ [ \ ] ^ _ ` { | } ~ + < = > A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Apostrophes (') and hyphens (-) are ignored, with one exception: If two text strings are the same except for a hyphen, the text with the hyphen is sorted last. |
Logical values | No is placed before Yes. |
Error values | All error values are treated as equals for sorting purposes. |