Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Have you worked with an Excel or CSV file that changes slightly their column names? Whatever the reason, this seems to make your Power BI refresh crash.
As you know, Power Query is very susceptible to any change, especially using Functions such as Table.ReorderColumns or Table.SelectRows.
To solve that problem we have developed a function called ColumnStandardizer. The idea as the name suggests is to standardize a set of columns from a given table based on a list of predefined columns.
Assuming receiving a monthly table like the one below.
The column headers are roughly the same, but rarely are exactly the same, so appending a folder will not work as expected.
Standard Names
The first step is to decide on the standard names of your columns. We have defined the ones for the table above.
That means we have removed unnecessary characters and added a space for clarity.
Steps
To simplify the code I’ve used Source = Table.
let
Source = Table,
GetColumnNames = Table.ColumnNames(Source),
RenameList = ColumnStandardizer(
GetColumnNames,
{"Date Period", "Date Time", "Sales Amount", "Profit Amount"}
),
ReplaceColumnNames = Table.RenameColumns(Source, RenameList)
in
ReplaceColumnNamesThe second argument of ColumnStandardizer defines the standard list of columns {"Date Period", "Date Time", "Sales Amount", "Profit Amount"}. This can be also defined in a Power Query variable as we did.
The same example as before, the only difference is we have an additional column we weren’t expecting, Margin.
Date.Period Date.Time Sales.Amount Profit_Amount Margin
Well, that’s not a problem. We can do the same we did before, and we just need to add an additional step with Table.SelectColumns.
Basically, because we have standardised the column names, and we have defined that list beforehand, we use the list again in Table.SelectColumns
let
Source = Table,
GetColumnNames = Table.ColumnNames(Source),
StandardColumns = {"Date Period", "Date Time", "Sales Amount", "Profit Amount"},
RenameList = ColumnStandardizer(GetColumnNames, StandardColumns),
ReplaceColumnNames = Table.RenameColumns(
Source,
ColumnStandardizer(
GetColumnNames,
{"Date Period", "Date Time", "Sales Amount", "Profit Amount"}
)
),
SelectColumns = Table.SelectColumns(ReplaceColumnNames, StandardColumns)
in
SelectColumnsIf you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |