List.Reverse Function in Power Query
The List.Reverse function returns a list after reversing the items in a list.
Syntax
List.Reverse(list as list) as list
Example: Reverse the items of the given input list.
Power Query M
let
Source = {"India", "America", "Canada", "Japan", "Australia", "England"},
ReversedList = List.Reverse(Source)
in
ReversedList The output will be shown in the following image:
