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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors