Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I want to transform my data using pivot column option (column "Role") where "Contact role name" is values column.
This is my Pivot column settings:
Error shows up because there are duplicate names in the "Contact role name" column related to the same "Role" (Originator) in the origin table
My question is - how can I overcome this situation and see two lines in the resulting table showing one originator name per line?
Solved! Go to Solution.
maybe you can try this
1. group by
= Table.Group(#"Changed Type", {"18", "product line", "ROLE"}, {{"contact name", each Text.Combine([contact role name],"/"), type text}})
2. pivot column
3. split column
pls see the attachment below
Proud to be a Super User!
maybe you can try this
1. group by
= Table.Group(#"Changed Type", {"18", "product line", "ROLE"}, {{"contact name", each Text.Combine([contact role name],"/"), type text}})
2. pivot column
3. split column
pls see the attachment below
Proud to be a Super User!