Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register 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