sort
Description
Sorts the elements in a list in ascending or descending order.
Input / Parameter
data
The list of elements to be sorted.
List
-
-
Yes
descending
Sorts the elements in ascending order if 'false', sorts in descending order if 'true'.
Boolean
false
true, false
No
Output
Returns the sorted list.
List
Example
In this example, we will sort a list and print the updated list in the console.
Step
Drag a
buttoncomponent to the canvas and open theActiontab. Select thepressevent of the button and drag theLog.writefunction to the event flow.Call the function
List.sortinside theLog.writefunction.Then call the function
Conversion.toListinside theList.sortfunction. Enter the value fordescendingparameter. (Note: Whendescendingis not specified it will be false by default.)
Result
The console will print the list in the order that is specified.
In this example, the value printed will be
[1, 3, 5], as the order of sorting is ascending.
Links
Related Information
See also:
Functions
Last updated