The four sort methods
Sorting a list is not always as simple as A to Z. Depending on your data, a different method may give you a more useful result. Here are the four main approaches:
A to Z (ascending alphabetical)
The default. Use for names, countries, product lists, tags, or any list where you want the standard dictionary order.
Z to A (descending alphabetical)
Use when you want reverse alphabetical — useful for reading lists backward, finding items near the end of an alphabet-sorted database, or reversing an existing sorted list.
By length (shortest to longest)
Use when the length of each item is more relevant than its content — for example, sorting keywords by character count, trimming a list to the shortest items first, or checking for unusually long entries.
Natural sort
Use when your list contains numbers embedded in text. Standard alphabetical sort treats numbers as characters, which produces counterintuitive results for numbered items. Natural sort handles the numeric parts as actual numbers.
Why natural sort matters
Standard alphabetical sort compares characters one at a time from left to right. The digit 1 comes before 2, which comes before 9 — but 10 starts with 1, so it sorts before 2 in a standard sort.
Standard sort
item1
item10
item100
item2
item20
item3
Natural sort
item1
item2
item3
item10
item20
item100
Natural sort is the correct choice whenever your list items include version numbers, file names, chapter numbers, product SKUs, or any numbered sequence. Standard sort is fine for pure text with no embedded numbers.
Common use cases
- Email or contact lists: Sort by last name A to Z before importing into a CRM. Remove duplicates first — a sorted list with duplicates is harder to scan than a deduplicated one.
- Keyword lists for SEO: Sort by length to find the shortest (and often most competitive) keywords at the top. Use Z to A to bring long-tail keywords to the front.
- Product or category names: Standard A to Z for navigation menus and dropdowns. Natural sort for product codes like SKU-1, SKU-2, SKU-10.
- File or folder names: Natural sort is almost always the right choice for file lists with numbered names.
- Tags and labels: A to Z makes it easier to spot duplicates or near-duplicates — "marketing" and "Marketing" will appear adjacent and are easy to catch and merge.