Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Append column names in nested table from value of another column

Hello everyone, could I please get help from  anyone on how to rename all column names from the tables in "Custom" column and append them with the value from column "Code"

Nested tables.JPG

1 ACCEPTED SOLUTION
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

Use this code. Replace #"Grouped Rows" with your previous step name

= Table.FromRecords(Table.TransformRows(#"Grouped Rows", (r)=> [Code = r[Code], Custom = Table.TransformColumnNames(r[Custom], (x)=>x&Text.From(r[Code]))]))

View solution in original post

3 REPLIES 3
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

Use this code. Replace #"Grouped Rows" with your previous step name

= Table.FromRecords(Table.TransformRows(#"Grouped Rows", (r)=> [Code = r[Code], Custom = Table.TransformColumnNames(r[Custom], (x)=>x&Text.From(r[Code]))]))
Anonymous
Not applicable

Thank you Vijay, it worked great.

Is there a way to rename columns that name which contains specific text, let's say rename columns that contains "abc" in the header only

Hi @Anonymous, check this. Remove ", Comparer.OrdinalIgnoreCase" from the code if you want case sensitive check.

dufoq3_0-1713253923273.png

 

let
    Source = #table(type table[Code=Int64.Type, Custom=table], {
        {6100, #table({"Column10", "Test abc 1", "Column20"}, {{1,2,3}})},
        {6200, #table({"Column10", "Test abc", "A_Abc_B"}, {{4,5,6}})}
    }),
    Ad_Renamed = Table.AddColumn(Source, "Renamed", each Table.RenameColumns([Custom], 
        [ a = List.Select(Table.ColumnNames([Custom]), (x)=> Text.Contains(x, "abc", Comparer.OrdinalIgnoreCase)),
          b = List.Zip({ a, List.Transform(a, (x)=> x & Text.From([Code])) })
        ][b]),
    type table)
in
    Ad_Renamed

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors