Forum Discussion
Anonymous
8 years agoNot applicable
How to append only specified columns?
Hi, I am appending several tables into 1 big table. I don't need all the columns so I have manually deleted the unnecessary columns after the append. Please can you tell me how to specify which c...
BradZehr
Advocate II
6 years agoYou can specify specific colums during the Append step using Table.SelectColumns, as in:
Table.Combine({#"Query 1", Table.SelectColumns(#"Query 2", "Column Name")})
mhdilyas2008
3 years agoFrequent Visitor
can you please give example here
fatcing the specific column data from multiple tables
- BradZehr3 years ago
Advocate II
To append selected columns from two tables:
= Table.Combine({Source, Table.SelectColumns(#"Table 1", "Column 1"), Table.SelectColumns(#"Table 2", "Column 2")})- mhdilyas20083 years agoFrequent Visitor
is this correct?
- BradZehr3 years ago
Advocate II
- BradZehr3 years ago
Advocate II
= Table.Combine({Source, Table.SelectColumns(#"TableName", {"Column 1", "Column 2"})})- BradZehr3 years ago
Advocate II
Sorry, that was multiple columns from the same table.
- mhdilyas20083 years agoFrequent Visitor
look like it is from same table.
i have multiple tables, anyway to archive.
Appreciate your support.