The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi
This is similar to https://community.powerbi.com/t5/Desktop/Auto-renaming-columns-based-on-value-in-another-table/m-p/7... with some added complexity
I have a rather large table (from JIRA) with quite a few columns that are named in the following format
customfield_XXXXX - note that not all columns have this name.
I have another table which defines the custom field name.
For all columns that are named customfield_XXXXXX I want to look up the cfname value in the other table and replace the column header in Table1.
The above answer I found only works if all column headers are to be replaced - my scenario requires finding each column to be replaced, stripping the ID from the current name and then replacing it with the value from the other table.
Any help would be greatly appreciated.
Andy
Solved! Go to Solution.
Based on my test, you may refer to the following code.
#"Renamed Columns" = Table.RenameColumns(Source , Table.ToRows(Table.SelectColumns(Table.AddColumn(Table2, "ID2", each "customfield_" & Text.From([ID])) , {"ID2", "cfname"})) , MissingField.Ignore)
Based on my test, you may refer to the following code.
#"Renamed Columns" = Table.RenameColumns(Source , Table.ToRows(Table.SelectColumns(Table.AddColumn(Table2, "ID2", each "customfield_" & Text.From([ID])) , {"ID2", "cfname"})) , MissingField.Ignore)
I am doing a jira analysis and my question is a bit similar to this issue.
https://community.powerbi.com/t5/Desktop/Rename-the-columns-of-a-table-using-the-values-from-another...
Can you please help me with this issue?
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
113 | |
83 | |
75 | |
51 | |
42 |
User | Count |
---|---|
140 | |
113 | |
73 | |
64 | |
62 |