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...
mhdilyas2008
3 years agoFrequent Visitor
can you please give example here
fatcing the specific column data from multiple tables
BradZehr
Advocate II
3 years agoTo 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
- mhdilyas20083 years agoFrequent Visitor
Thanks for your gr8t support.
It did worked as expacted!!!
- BradZehr3 years ago
Advocate II
I think you want more like this:
= Table.Combine({Sheet1, Table.SelectColumns(Sheet2, ColumnName)})