List.Reverse
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns a list that reverses the items in a list.
List.Reverse(list as list) as list
| Argument | Description |
|---|---|
| list | The List to modify. |
List.Reverse({1, 2, 3, 4, 5}) equals {5, 4, 3, 2, 1}
Show: