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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
alexandrau
New Member

Power Query - Transform Sample File for Multiple Workbooks with Multiple Sheets

Hi All, 

 

I am using a folder with multiple workbooks as my data source, and the workbooks have multiple sheets that i also need. 

 

Before merging that data, each sheet needs to be transfomred in the same manner; 
i have created a transform sample file, that looks at all the sheets regardless of the sheet names and transforms everything identically. 

 

After transforming, i should end up with columns that include:

- Date Received (when the used files where received)
- Future Dates

- Volume

 

In one workbook, I can have for example in the same workbook, received 21-July-2022, a Sheet for July dates and one for August dates. 

 

when i implement to apply for all my workbook and sheets the transformation i noticed that for every second sheet, 
continuing from the above example of July & August in the same file; the relative rows for August show instead of August future dates July and instead of August volume the July volume. 

 

Thanks, Alex

 

3 REPLIES 3
jennratten
Super User
Super User

Hello - if you are using the get files from folder connector, that creates a sample transformation function for you, when the function is invokes (in the table where the data is combined), it is most likely applying the transformations specified for only the first worksheet in the file.

In this example, in my Transform Sample File query, we can see that it is setting up the transformations for the sheet named "Sheet1" and I am renaming columns and removing other columns.

jennratten_2-1658835315497.png

 

Then when the function is invoked, we can see that in my example the function is failing, because the all subsequent files do not have a sheet named Sheet1.

jennratten_1-1658835111192.png

Instead, in the Transform Sample File, you can modify the script to apply the transformations to all rows, like so...

jennratten_3-1658835756914.png

let
    Source = Excel.Workbook(Parameter1, null, true),
    RenameDataColumn = Table.RenameColumns ( Source, {{"Data", "DataOLD"}}),
    //Sheet2 = Source{[Name="Sheet1"]}[Data],
    TransformAllSheets = Table.AddColumn ( 
        RenameDataColumn,
        "Data",
        each
        let
            RenameColumns = Table.RenameColumns([DataOLD],{{"Column1", "NewColumn1"}}),
            SelectColumns = Table.SelectColumns(RenameColumns,{"NewColumn1"})
        in
            SelectColumns
    )
in
    TransformAllSheets

Now in the step where the function is invoked, we can see that it is working.

jennratten_4-1658835875544.png

 

Hi @jennratten,

 

Can the script be modified to include only specific sheets instead of all sheets in the file? How would this be done?

Hello! Yes, you can certianly do this.  Here is an example below.  I have added a new line to the previous script in which specific sheets are selected.  Note, if you have more than just sheets in your workbook, like tables, named ranges, etc. also, then you may want to select the names and also filter for objects that are sheets - just in case you have a named range or table that has the same name as the sheet you are wanting to specify. 

let
    Source = Excel.Workbook(Parameter1, null, true),
    // Update the sheet names inside the curly braces { } with your actual sheet names.
    SelectSheets = Table.SelectRows ( Source, each List.Contains ( 
        {"Sheet1", "Sheet2" }, [Name] ) 
    ),
    RenameDataColumn = Table.RenameColumns ( SelectSheets, {{"Data", "DataOLD"}}),
    //Sheet2 = Source{[Name="Sheet1"]}[Data],
    TransformAllSheets = Table.AddColumn ( 
        RenameDataColumn,
        "Data",
        each
        let
            RenameColumns = Table.RenameColumns([DataOLD],{{"Column1", "NewColumn1"}}),
            SelectColumns = Table.SelectColumns(RenameColumns,{"NewColumn1"})
        in
            SelectColumns
    )
in
    TransformAllSheets

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors