Forum Discussion
PowerBITestingG
3 years agoResolver I
Revert Unpivot
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: ...
john_mulqueen
3 years agoNew Member
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")
- PowerBITestingG3 years agoResolver I
Both columns are text but apparently its trying to convert something to number
"DataFormat.Error: We couldn't convert to Number."
Any ideas?