Forum Discussion
Yoan_Tufel
May 18, 2022Copper Contributor
Change data structure
Hello, I will try to be clear sorry if am not Have I data that is structure like such: COLUMN A B 1:phone | customer info 2: email | custumer info 3: phone | ...
SergeiBaklan
May 18, 2022Diamond Contributor
Power Query could work:
Script is
let
Source = Excel.CurrentWorkbook(){[Name="data"]}[Content],
#"Grouped Rows" = Table.Group(Source, {"Column1"}, {{"Info", each _[Column2]}}),
Custom1 = Table.FromColumns(#"Grouped Rows"[Info], #"Grouped Rows"[Column1])
in
Custom1- Yoan_TufelMay 18, 2022Copper Contributor
i will try as soon as possible