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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
cflynn_29
Helper I
Helper I

Fill down Columns based on Column List

I have a table that has quite a few columns and i need to fill down only columns that contain the "RCCD" name.

cflynn_29_0-1674518457015.png

 

So my next step was to use = Table.ColumnNames(#"Promoted Headers1") and it gives me this nice list of Column Names

cflynn_29_1-1674518579127.png

After that i want only the names that conatin "RCCD" in it so i use = List.FindText(Custom7,"RCCD") and it gives me a list of the column names that i want to use to Filldown my table in the #"Promoted Headers1" step.

cflynn_29_2-1674518704071.png

 

However when i get to the step to fill down = Table.FillDown(#"Promoted Headers1",Table.ColumnNames(#"Custom8"))......Custom8 was the preivous step.  It gives me the following error, is there another way to do this?

cflynn_29_3-1674518801000.png

 

And heres the MCode for that sequence:

#"Promoted Headers1" = Table.PromoteHeaders(#"Transposed Table", [PromoteAllScalars=true]),
Custom7 = Table.ColumnNames(#"Promoted Headers1"),
Custom8 = List.FindText(Custom7,"RCCD"),
Custom9 = Table.FillDown(#"Promoted Headers1",Table.ColumnNames(#"Custom8")),

 

 

Any help would be great

 

TY

1 ACCEPTED SOLUTION
Daryl-Lynch-Bzy
Community Champion
Community Champion

Hi @cflynn_29 - you don't need to include the Table.ColumnNames function because "Custom8" is a list.

 

#"Promoted Headers1" = Table.PromoteHeaders(#"Transposed Table", [PromoteAllScalars=true]),
Custom7 = Table.ColumnNames(#"Promoted Headers1"),
Custom8 = List.FindText(Custom7,"RCCD"),
Custom9 = Table.FillDown(#"Promoted Headers1", #"Custom8" )

View solution in original post

1 REPLY 1
Daryl-Lynch-Bzy
Community Champion
Community Champion

Hi @cflynn_29 - you don't need to include the Table.ColumnNames function because "Custom8" is a list.

 

#"Promoted Headers1" = Table.PromoteHeaders(#"Transposed Table", [PromoteAllScalars=true]),
Custom7 = Table.ColumnNames(#"Promoted Headers1"),
Custom8 = List.FindText(Custom7,"RCCD"),
Custom9 = Table.FillDown(#"Promoted Headers1", #"Custom8" )

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

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