Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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 | Naam | Label | Nummer | Opmerking |
16-01-2024 12:02:02 | Roy Bouwhuis | ja | 8 | Hoi Hoi |
16-01-2024 12:01:11 | Joery Berends | nee | 8 | Hey Hey |
many thanks !!!!
Solved! Go to Solution.
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
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