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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors