Join 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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have the following data:
Name | Attribute | Value |
ID900 | First Name | Kevin |
ID900 | Last Name | Jorbs |
ID900 | City | New York |
And I have to transform it to this:
Name | First Name | Last Name | City |
ID900 | Kevin | Jorbs | New York |
Any ideas?
If you want to un-un-pivot it means you want to pivot.
In the Power Query Editor go to Transform -- > Pivot Column.
Select Advanced Options --> Don't Aggregate
= Table.Pivot(Source, List.Distinct(Source[#" Attribute"]), " Attribute", " Value")
Both columns are text but apparently its trying to convert something to number
"DataFormat.Error: We couldn't convert to Number."
Any ideas?