March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have almost 400+ custom columns in a table as customfield_10750, customfield_10890 and so on.
Table 1
and i created another table with same column nams as attributes and their values as
Table 2
Now i want to replace all the column names in table 1 with the values of the attributes in table two.
Can anybody suggest how can i achieve this in Power query
Thanks
Solved! Go to Solution.
if there is no missing value between Attributes values and comlumn names of Table1, then this code may work
NewStep=Table.RenameColumns(Table1,Table.ToRows(Table2))
otherwise, try this code
=Table.RenameColumns(Table1,List.Select(Table.ToRows(Table2),each List.Contains(Table.ColumnNames(Table1),_{0},(x,y)=>x{0}=y)))
if there is no missing value between Attributes values and comlumn names of Table1, then this code may work
NewStep=Table.RenameColumns(Table1,Table.ToRows(Table2))
otherwise, try this code
=Table.RenameColumns(Table1,List.Select(Table.ToRows(Table2),each List.Contains(Table.ColumnNames(Table1),_{0},(x,y)=>x{0}=y)))
I tried this but getting this error
This is my Custom_Fields table
and this is my Actual Table in which i want to replace column names
I am not able to understand why it is throwing this error.
is it possible that there two or more "Enviroment" in the second column of Custom_Fields?
Yes Exactly this is happening. See this
Some values are repeating for same custom field
Hi @wdx223_Daniel ,
I think there is something bad with the data in Custom_Fields. For now i have remove duplicates from the Custom_Fields second column and now everything is fine 😊. Out of 413 rows 408 values left after removing duplicates so i need to check for those 5 duplicate values again. Thanks for your help and i am accepting your answer as solution 👍
thanks for the reply. I will check this and wll tell you about the result 😊
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
13 | |
9 |
User | Count |
---|---|
36 | |
31 | |
20 | |
19 | |
17 |