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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors
Top Kudoed Authors