The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
is it possible to transfrom some table from these structure:
ID Attribute
4711 A
4711 B
4712 A
in the following result:
ID Attribute
4711 A|B
4712 A
Thanks for youre help!
Solved! Go to Solution.
Hi @sewi
Group by ID, choose Sum and replace List.Sum by Text.Combine( , "|")
= Table.Group(Source, {"ID"}, {{"Attribute", each Text.Combine([Attribute], "|"), type text}})
Stéphane
Hi @sewi
Group by ID, choose Sum and replace List.Sum by Text.Combine( , "|")
= Table.Group(Source, {"ID"}, {{"Attribute", each Text.Combine([Attribute], "|"), type text}})
Stéphane