Get Files from SharePoint Folders in Power BI when Column Names or Column Numbers are Expected to Change

By:   |   Updated: 2022-03-16   |   Comments   |   Related: > Power BI


Problem

In a previous tutorial, I have written on how to combine multiple files from multiple folders in Power BI, but in that case the number or names of the columns was fixed. In this tutorial, we will look at how to combine files in Power BI when we are expecting column names or column numbers to change at any time, I mean when the column names or numbers are expected to change.

Solution

To demonstrate this, l will first demonstrate how we combine two datasets with fixed number of columns in Power BI and then demonstrate what happens when we have additional files to be combined but with additional fields and changed field names.

The sample datasets we will be combining are as seen in the diagrams below.

Sample dataset 1
Sample dataset 2

Both datasets above have four columns and the same column names, so it would be seamlessly combined in Power BI. Assuming these datasets are in SharePoint folders as seen in the diagram below, then we can combine them as follows.

Excel Data sources in SharePoint folder

Get the URL of the SharePoint folder where the Power BI datasets are located. See this article on how you can get the root URL for the SharePoint folder and connect to Power BI.

Next, we expand and combine the two datasets above as seen below.

Combining two datasets in Power BI

The above action would usually combine as many datasets in Power BI into a table as seen below.

Two combined datasets in Power BI

But as soon as we include a third dataset with additional columns in the SharePoint folder, the new additional columns will not automatically show in the combined table. This is as shown in the diagram below.

Three combined datasets in Power BI

To ensure the new columns show in the combined table, follow the steps below.

Step 1: Add the new dataset with additional columns.

To demonstrate this, I have used the dataset below. As can be seen, the new dataset has six columns, unlike the initial two datasets with four columns each.

Sample dataset 3 with additional columns

The three datasets are as seen below while being combined in Power BI.

Combining three datasets in Power BI

Step 2: Next, as usual we will just click on the expand point on the "Content" column.

Step 3: Then, remove other columns except the "Data" column as seen below.

Isolating only Data column in the combining process

Once the above step is done, we are only left with the "Data" column as seen below.

Data column only

Step 4: Next, we need to click on the expand point on the "Data" column as seen in the diagram below. Then click "Load more" to continue. This will now ensure all columns from all datasets are included in the combined table

How to manually include additional columns in dataset combination

The new columns are as seen in the combined table below.

Combined datasets in power bi showing included additional columns

But this is still not future proofed, as when there are other new columns on new datasets in the future, you would either manually repeat Step 4 or you would not see the new columns too. So, how do we automate this process to recognize additional (new) columns in the future without the need of manual resolution each time. To do this, do the following.

First, you need to navigate back in the "Applied Steps" up to the point where you "Removed Other Columns", delete every step before that. See diagram below showing before deleting steps.

How to delete applied steps

After deleting steps, you should be able to see the "Applied Steps" as like the diagrams below.

Diagram showing steps left after deleting some steps
Three datasets to be automatically combined

Next, you need to create a new column on the step above as seen below. In this case I have used "Custom Column" to add a new column to the step.

Adding a new column to the step using custom column

Then use the M Query as seen below to create the column.

Adding a new column to the step using custom column and M query
Excel.Workbook([Content])

Next, you need to remove other columns except the newly created "Custom" column.

Next, click on the expand point of the column as seen in the diagram below, and then unselect other columns but only select the "Data" column as seen below. Then click "OK".

Expanding only the data column of the created custom column

The column created would now look like the one we had in Step 3 in the initial steps we did earlier as seen in the diagram below.

Diagram showing only data column from created custom column

Thus, we would expect that if we repeat the expanding on the expand point as we have initially done, we end up with same issues as before where the actions to expand and include any new columns can only be done manually. Since we are planning on automating the expand actions, we will need to do one more action.

To do this, first you need to go to your "Applied Steps" and on the last applied step right click and select "Insert Step After" as seen in the diagram below.

How to add a new step to the Power Query Applied Steps

This would allow you to add a new step to your actions on this combined table by using a Power Query function "Table.Combine". See diagram and query code below.

Adding a new step to the step using M Query functions
= Table.Combine(#"Expanded Custom"[Custom.Data])

That’s it! The automation is complete, you should now be able to see any new columns automatically in the combined table.

I want to give credit to Ruth Pozuelo of Curbal for most ideas behind this article. For those who don’t know about Ruth, she creates some great content on Power BI via her YouTube platform known as Curbal.

Next Steps

Learn more about Power BI in this 3 hour training course.


Click here to start the Power BI course






sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Kenneth A. Omorodion Kenneth A. Omorodion is a Business Intelligence Developer with over eight years of experience. He holds both a bachelor’s and master’s degree (Middlesex University in London). Kenneth has the MCSA, Microsoft Data Analyst - Power BI and Azure Fundamentals certifications. Kenneth is a Microsoft Certified Trainer and has delivered corporate training on Power BI, SQL Server, Excel and SSRS.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2022-03-16

Comments For This Article

















get free sql tips
agree to terms