/
orderList

orderList



Function: orderList()

Return a new list containing the contents of a supplied list, sorted.

Optionally, control whether the list is sorted in ascending or descending order.

Syntax

orderList([list], 'ORDER')

ArgumentTypeDescription
listArrayThe comma-separated list of values to be sorted.
'ORDER'String

If this is 'ASC', sort in ascending order.

If this is 'DESC', sort in descending order.

If this parameter is omitted, sort in ascending order.

Examples

orderList([1,4,3,2])

Returns [1,2,3,4].


orderList(['a','z','b'], 'DESC')

Returns ['z','b','a'].

See Also

Related content

SubList Macro
SubList Macro
Read with this
orderList
orderList
More like this
orderList
orderList
More like this
orderList
More like this
orderList
orderList
More like this
orderList
orderList
More like this