Power Query
published
Search
⌃K

List.Reverse

List.Reverse

Reverses the order of values in the list.
function (list as list) as list

Description

Returns a list with the values in the list list in reversed order.

Category

List.Transformation functions

Examples

Create a list from {1..10} in reverse order.
List.Reverse({1..10})
{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}