Hi,
I've created a new table (table2) by transforming data from an existing table (table1). I would now like to append some other data to table2 from table1.
I can do this quite easily by creating a new table and combining the two tables, but I'd like to do it all within one script to avoid the creation of a further table.
Can this be done? If so, what is the correct syntax?
I've tried:
But it throws up a cyclic reference error.
Cheers,
Matty
I've created a new table (table2) by transforming data from an existing table (table1). I would now like to append some other data to table2 from table1.
I can do this quite easily by creating a new table and combining the two tables, but I'd like to do it all within one script to avoid the creation of a further table.
Can this be done? If so, what is the correct syntax?
I've tried:
Code:
#"Combine Tables" = Table.Combine({table2, Table.SelectColumns(table1,{"1Column", "2Column", "3Column"})})
But it throws up a cyclic reference error.
Cheers,
Matty