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
drorli
Helper I
Helper I

Expand Columns for Table with Unknown Column Names

I seached Google for "power query expand all columns".

Top search result is from 2014 and seemed really complex, second item found did not seem simpler and only 3rd result was from this forum, by @ImkeF from 2018. (note-to-self, 1st stop to seek answers should be this forum) 

 

In short, the trick is to get the list of column names (Table.ColumnNames), on the column which holds the table of unknown column names (using Table.Combine).

 

It you have a Table (say it is called TABLE_OF_TABLES) and it has a column that each value is a Table with unknown columns names (say column is names table_column), you can expand it using:

Table.ExpandTableColumn(
                TABLE_OF_TABLES,
                "table_column",
                Table.ColumnNames(Table.Combine(TABLE_OF_TABLES[table_column])),
                Table.ColumnNames(Table.Combine(TABLE_OF_TABLES[table_column]))
                )

Since it took me some time to get is right and since this looks like a pretty common task I am posting the functions I implemented. Hope others will benefit from it.

 

Function GetSheetDataFromFiles

= (sheetName) =>
let
    fileNames = FILE_NAMES, // A table with a single column called "Data Source File Name", each entry is a file name (full path)
    readFileData = Table.AddColumn(fileNames,
                "fileData",
                each GetSheetData([Data Source File Name], sheetName)
    ),
    expandFileData = Table.ExpandTableColumn(
                readFileData,
                "fileData",
                Table.ColumnNames(Table.Combine(readFileData[fileData])),
                Table.ColumnNames(Table.Combine(readFileData[fileData]))
    ),
    removeFileName = Table.RemoveColumns(expandFileData,{"Data Source File Name"})
in
    removeFileName

Function GetSheetData

= (fileName, sheetName) =>
let
    Source = Excel.Workbook(File.Contents(fileName), null, true),
    allData = Source{[Item=sheetName,Kind="Sheet"]}[Data],
    promotedHeaders = Table.PromoteHeaders(allData, [PromoteAllScalars=true])
in
    promotedHeaders

 

1 REPLY 1
Icey
Community Support
Community Support

Hi @drorli ,

 

Thank you for your sharing! 

 

 

 

Best Regards,

Icey

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