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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 16 | |
| 12 | |
| 9 | |
| 7 | |
| 6 |