SORT()
Sorted list items
Returns a new list consisting of the items in sorted order, either ascending (default) or descending.
Sample usage
SORT(LookupTable[ColumnC]) returns a sorted list of values from ColumnC in the LookupTable
Syntax
SORT(list, [descending])
list- A list of any type.descending- AYes/Noexpression. Set toTRUEto sort in descending order (high to low) orFALSEto sort in ascending order (low to high). Defaults toFALSE.
See also
Was this helpful?
How can we improve it?