Forum

Notifications
Clear all

Data Transpose

3 Posts
2 Users
0 Reactions
58 Views
(@marsil)
Posts: 72
Estimable Member
Alan Sidman
(@alansidman)
Posts: 220
Member Moderator
 

I would pivot the data in Power Query

 

let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(Source, {{"Rank", type text}}, "en-US"), List.Distinct(Table.TransformColumnTypes(Source, {{"Rank", type text}}, "en-US")[Rank]), "Rank", "URL")
in
#"Pivoted Column"

 
Posted : 26/05/2022 3:11 am
(@marsil)
Posts: 72
Estimable Member
Topic starter
 

Hi Alan,

Wow! This is awesome and it works like a charm. Thank you so much!!!

Thanks,

Marsil

 
Posted : 27/05/2022 7:26 pm
Share: