Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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.

Reply
Krijgersss
Helper II
Helper 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 

Krijgersss_0-1705414159057.png

i want to have the rows complete like a complete table it has to look like this:


Namelabelnumberaangepast.1
Roy BouwhuisJa8Hey Hey
Joery BerendsNee8Hoi Hoi
    
    
    

 

can somebody help me with this your help is appreciated!!!

1 ACCEPTED SOLUTION
AlienSx
Super User
Super User

@Krijgersss 

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

View solution in original post

1 REPLY 1
AlienSx
Super User
Super User

@Krijgersss 

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

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors