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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
dumpguy
Frequent Visitor

How to get derived string recognized as column name. List.Last(Table.ColumnNames(...

Dear all,

I´m new to this forum, but a lot of posts could already help me with my Power Query ambition. Thanks´s a lot for that.
Now, for my last problem I couldn´t find a solution (or rather don´t know the right expression to search for).

 

My goal is to keep the first row of nested tables, which I could solve by this M code:

 

= Table.AddColumn(#"Expand all", "First row only", each Table.FirstN([Grouped 5], 1))

 

This got me a column "First row only" holding nested tables each with exact one row, the top row fetched from the nested tables in column "Grouped 5".

 

So far so good, but now I created my source with a dynamic amount of columns, meaning the last column  - the one to be processed - can be named "Grouped 1", "Grouped 2" up to "Grouped 7".

 

By testing this M code:

= Table.AddColumn(#"Expand all - dynamically", "Custom", each List.Last(Table.ColumnNames(#"Expand all - dynamically")))

I could verify to strip the name of the last column, e.g. "Grouped 5".

 

But putting this into the code for receiving the first rows of each nested table in this last column didn´t work. Obviously there´s a mistake in it:

= Table.AddColumn(#"Expand all - dynamically", "First row only", each Table.FirstN(List.Last(Table.ColumnNames(#"Expand all - dynamically")), 1))

 

Expression.Error: We cannot convert the value ""Grouped 5"" to type Table.

 

I think the doubled "" are an indication what´s going wrong, but my experience on M code isn´t sufficient to figure this out.
I hope somebody can help me.

 

Regards,

Stefan

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @dumpguy 

 

If I understand correctly, you want to find your last column which is a table, then pass the column name as a variable to get the first row, try it

Table.AddColumn(#"Expand all - dynamically", "First row only", each Table.FirstN(Record.Field(_,List.Last(Table.ColumnNames(#"Expand all - dynamically"))),1))

 

View solution in original post

2 REPLIES 2
Vera_33
Resident Rockstar
Resident Rockstar

Hi @dumpguy 

 

If I understand correctly, you want to find your last column which is a table, then pass the column name as a variable to get the first row, try it

Table.AddColumn(#"Expand all - dynamically", "First row only", each Table.FirstN(Record.Field(_,List.Last(Table.ColumnNames(#"Expand all - dynamically"))),1))

 

Hello Vera_33,

this was the solution! Many thanks for your support.

Have a nice day,

Stefan

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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