Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.