Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi there!
Is there a way to accomplish the following:
I'll always have one row in this form. I want the 3rd column to be renamed as the value of previous column and then deleting the second column automatically so that output table should look like below:
I have number of files for which I need to apply this. Can anyone help me with this ?
Solved! Go to Solution.
Hi @Anonymous ,
You can copy below code and paste it in Advanced Editor.
...
... ,
#"Renamed Columns" =
let _Name = List.Max(#"Merged Queries"[Table.Name]) in
Table.RenameColumns(#"Merged Queries",{{"Table.Table", _Name}}),
#"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"Table.Name"})
in
#"Removed Columns"
Pay attention to #"Merged Queries" in my code, this the step above "Renamed Columns" step, so you need to change it in your code. The logic of this code is to get max value in "Table.Name" column. Due to you only have one row so the max value is the name we need. Then use it to rename "Table.Table" column. Finally remove "Table.Name" column.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You can copy below code and paste it in Advanced Editor.
...
... ,
#"Renamed Columns" =
let _Name = List.Max(#"Merged Queries"[Table.Name]) in
Table.RenameColumns(#"Merged Queries",{{"Table.Table", _Name}}),
#"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"Table.Name"})
in
#"Removed Columns"
Pay attention to #"Merged Queries" in my code, this the step above "Renamed Columns" step, so you need to change it in your code. The logic of this code is to get max value in "Table.Name" column. Due to you only have one row so the max value is the name we need. Then use it to rename "Table.Table" column. Finally remove "Table.Name" column.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much for your response @Anonymous
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |