Forum Discussion
Replace Characters in Column Names
I'm sure there is a simple solution to this question, but everything I've found deals with renaming an entire column or replacing values within the table itself.
Problem: I have an ETL tool that extracts data to Google BigQuery. The column names in the source data are dynamic dates, as this is time series financiancial data. When the data goes into BigQuery, the column names get reformatted. For instance, "4/18/2020" becomes "_4_18_2020". I need to be able to rename the columns back to the source format so the dates work with my DAX functions.
I have explored Table.ColumnNames but can't seem to figure out how to use that function to convert the column formats to "MM/DD/YY" and I can't seem to find the answer online.
Any thoughts would be greatly appreciated.
Hi Anonymous
you should use "Unpivot other columns" to push your dates into column values.
Then do simple text replacements.
1 Reply
- ImkeFCommunity Champion
Hi Anonymous
you should use "Unpivot other columns" to push your dates into column values.
Then do simple text replacements.