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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
i need some help with my data to get the right table structure my table looks like this right now
i want to have the rows complete like a complete table it has to look like this:
Name | label | number | aangepast.1 |
Roy Bouwhuis | Ja | 8 | Hey Hey |
Joery Berends | Nee | 8 | Hoi Hoi |
can somebody help me with this your help is appreciated!!!
Solved! Go to Solution.
let
Source = your_table,
cls = List.Buffer(List.Skip(Table.ToColumns(Source))),
tbl = Table.FromColumns(
List.Transform(cls, List.RemoveNulls),
{"Name", "label", "number", "aangepast.1"}
)
in
tbl
let
Source = your_table,
cls = List.Buffer(List.Skip(Table.ToColumns(Source))),
tbl = Table.FromColumns(
List.Transform(cls, List.RemoveNulls),
{"Name", "label", "number", "aangepast.1"}
)
in
tbl