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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
k-k-k-k
Frequent Visitor

Power Query M , multiple sheet combine, add sheet name as new column to each corresponding table

hi experts,

 

i have action is combine 10+ sheet table in one Excel, the sheet name is contain "year" info, like the sheet name is "2018". but in the table of sheet is not have year column.   so i need extract the sheet name to table's column.  i know there expand table will keep the sheet name for every sheet table, BUT ,  there's some special reason, i need add the column first  for every table before expand. 

I think there should  some M function or expression can do, but i have no idea. could yo help me ?   thank you very much!

kkkk_0-1637638226405.png

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

NewStep=#table(Table.ColumnNames(PreviousStepName),Table.ToList(PreviousStepName,each {_{0},Table.AddColumn(_{1},"Year",(x)=>_{0})}))

View solution in original post

2 REPLIES 2
k-k-k-k
Frequent Visitor

Hi daniel,  the expression is works well, it solve my problem.  thank you very much!  u are so powerful .

wdx223_Daniel
Super User
Super User

NewStep=#table(Table.ColumnNames(PreviousStepName),Table.ToList(PreviousStepName,each {_{0},Table.AddColumn(_{1},"Year",(x)=>_{0})}))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors