Forum Discussion
Krijgersss
2 years agoHelper II
Need help forming my data
hello i need some help with my data to get the right table structure. My data looks like this right now (see screenshot) i want to have my data as a complete tabel like this: submitted_at ...
- 2 years ago
Hi,
Unpivot + Pivot
let
Source = Your_Source,
Unpivot = Table.UnpivotOtherColumns(Source, {"submitted_at"}, "Attribute", "Value"),
Pivot = Table.Pivot(Unpivot, List.Distinct(Unpivot[Attribute]), "Attribute", "Value")
in
PivotStéphane
slorin
2 years agoSuper User
Hi,
Unpivot + Pivot
let
Source = Your_Source,
Unpivot = Table.UnpivotOtherColumns(Source, {"submitted_at"}, "Attribute", "Value"),
Pivot = Table.Pivot(Unpivot, List.Distinct(Unpivot[Attribute]), "Attribute", "Value")
in
Pivot
Stéphane