Forum Discussion
Elie_HUCHET
4 years agoHelper III
Data export problem, rename column
Hello, I have a problem with my export from Excel to Power Query. When I created the PBI, the column in my Excel was called "Product Type" now it's called "Product". Therefore, Power Query shows a ...
- 4 years ago
Best way is that wherever Product Type is mentioned, change that to Product.
If you don't want to do above, insert the below statement after the source statement
(Right click on Source in Applied Steps pane, Insert Step After and paste the below in formula bar)
Table.RenameColumns(Source,{"Product","Product Type"})
Elie_HUCHET
4 years agoHelper III
Thank you!!