Forum Discussion

braulio's avatar
braulio
Frequent Visitor
2 years ago
Solved

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...
  • lbendlin's avatar
    lbendlin
    2 years ago
    let
        Source = List.Zip({Table.ColumnNames(Table2),Table.ColumnNames(Table1)}),
        Result = Table1 & Table.RenameColumns(Table2,Source)
    in
        Result