Forum Discussion
Transpose a List in Power Query
How do I Transpose a List like:
- {1, 2, 3}
into another List like:
- {{1}, {2}, {3}}
in Power Query?
Thanks in advance!
Table.ToRows(Table.FromList(List))
= List.Zip( { your_list } )
example: List.Zip( { {1, 2, 3} } ) = { {1}, {2}, {3} }
7 Replies
- robrog37Regular Visitor
Table.ToRows(Table.FromList(List))
- Zubair_MuhammadCommunity Champion
let Source = {1, 2, 3}, New= List.Generate(()=>[a={},b=0], each [b] <= List.Count(Source), each [a={Source{b}},b=[b]+1], each [a]) in New- GDERegular Visitor
Wow! That is a mighty function right there! A little (a lot) out of my leaugue...
Respect!
- mapelliFrequent Visitor
= List.Zip( { your_list } )
example: List.Zip( { {1, 2, 3} } ) = { {1}, {2}, {3} }- GDERegular Visitor
IMHO, this is the best one, I've seen so far. 🙂
- mapelliFrequent Visitor
Yeah... this is the equivalent to the transpose for lists.
I use it often with Table.RenameColumns; example:let
Source = Table.FromRecords({
[name_1= "John", address_2= "CA", id_3= "[email protected]"],
[name_1= "Juan", address_2= "MX", id_3= "[email protected]"],
[name_1= "João", address_2= "BR", id_3= "[email protected]"]
}),TransposedLists = List.Zip( { /* current column names: */ Table.ColumnNames(Source),
/* new col names */ { "firstName", "country", "email" }
} ),RenamedCols = Table.RenameColumns(Source, TransposedLists)
in
RenamedCols