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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Having many options for a column name to go into the same column

Basically I am trying to import a folder of files.  These files have different header names, but the different header names represent the same data.  So for instance, I want to write something in the advanced editor that takes data from either column "abc" or "xyz" and places it into "Company Code". 

 

Thanks.

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

When using Folder connector, the column names need to be same so the final table can show as expected.

The easiest way is to change the column name in your souce file.

 

A workaround to change the column name in Power Query is as below:

If file 1 and file 2 have the same structure, columns are corresponding in order.

file 1

abc v
a 1
b 2
c 3
e 4
t 5

file 2

xyz l
1 11
2 12
3 13
4 14
5 15

 

Then we can use the following code to combine two tables.

then change the "column1", "column 2" to your expected names.

Capture4.JPG

let
Source = List.Transform(Folder.Files("C:\Users\maggiel\Desktop\case\8\8.21\di name")[Content], each Excel.Workbook(_)[Data]),
#"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Added Custom" = Table.AddColumn(#"Converted to Table", "Custom", each Table.Skip([Column1]{0},1)),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Column1"}),
#"Expanded Custom" = Table.ExpandTableColumn(#"Removed Columns", "Custom", {"Column1", "Column2"}, {"Column1", "Column2"})
in
#"Expanded Custom"

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

When using Folder connector, the column names need to be same so the final table can show as expected.

The easiest way is to change the column name in your souce file.

 

A workaround to change the column name in Power Query is as below:

If file 1 and file 2 have the same structure, columns are corresponding in order.

file 1

abc v
a 1
b 2
c 3
e 4
t 5

file 2

xyz l
1 11
2 12
3 13
4 14
5 15

 

Then we can use the following code to combine two tables.

then change the "column1", "column 2" to your expected names.

Capture4.JPG

let
Source = List.Transform(Folder.Files("C:\Users\maggiel\Desktop\case\8\8.21\di name")[Content], each Excel.Workbook(_)[Data]),
#"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Added Custom" = Table.AddColumn(#"Converted to Table", "Custom", each Table.Skip([Column1]{0},1)),
#"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Column1"}),
#"Expanded Custom" = Table.ExpandTableColumn(#"Removed Columns", "Custom", {"Column1", "Column2"}, {"Column1", "Column2"})
in
#"Expanded Custom"

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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 Kudoed Authors