Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
8 | |
7 |