What is natural sort order?+
Natural sort treats embedded numbers numerically. Standard alphabetical sort: file1, file10, file2, file20. Natural sort: file1, file2, file10, file20. Use natural sort for filenames, version numbers, and any list with numeric components.
How do I sort a list of numbers?+
Enable 'Numeric sort'. Standard alphabetical sort puts 10 before 2 (because '1' < '2'). Numeric sort correctly orders 2 before 10. Works for integers and decimal numbers.
Can I sort and deduplicate at the same time?+
Yes. Enable both 'Sort' and 'Remove duplicates'. The deduplication step runs after sorting, so duplicates at different positions are merged. Case-insensitive deduplication can be enabled separately.
How do I reverse-sort (Z to A or largest to smallest)?+
Select 'Descending' order. This works for all sort modes: alphabetical Z-A, numeric largest first, shortest-to-longest, or random shuffle reversed.