Forum Discussion
Krijgersss
2 years agoHelper II
need help forming my data
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!!!
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
1 Reply
- AlienSxSuper User
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