Forum Discussion
braulio
2 years agoFrequent Visitor
table combine
Hi, Is it possible to combine two tables with the same structure but different column names without having to rename the columns so that they remain the same? = Table.Combine({#"primer bloque", #"s...
- 2 years ago
let Source = List.Zip({Table.ColumnNames(Table2),Table.ColumnNames(Table1)}), Result = Table1 & Table.RenameColumns(Table2,Source) in Result
braulio
2 years agoFrequent Visitor
Hi Ibendlin, sorry but I was reading and trying and the columns has to have the same name.
I know I can rename the columns but I have 50 tables with 48 columns each one, It is possible but it seems a bit inefficient and difficult to maintain.
If you have a syntaxis to combine two tables with same structure but different columns name please share it!!