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
3 years agoAdvocate II
To append selected columns from two tables:
= Table.Combine({Source, Table.SelectColumns(#"Table 1", "Column 1"), Table.SelectColumns(#"Table 2", "Column 2")})mhdilyas2008
3 years agoFrequent Visitor
is this correct?
- BradZehr3 years agoAdvocate II
- BradZehr3 years agoAdvocate II
I think you want more like this:
= Table.Combine({Sheet1, Table.SelectColumns(Sheet2, ColumnName)}) - mhdilyas20083 years agoFrequent Visitor
Thanks for your gr8t support.
It did worked as expacted!!!