PowerQuery
Home
Blog
Functions
Patterns
Showcases
← Back to List functions
List.Reverse
The function returns a reversed list of values from the original list inputted.
Syntax
List.Reverse(list as list) as list
About
The function returns a reversed list of values from the original list inputted.
Explanation
Generate a reversed list starting from 1 to 10 using Power Query function MList.Reverse({1..10}). The output will be {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}.