Forum Discussion
Anonymous
6 years agoNot applicable
Select Columns using existing data and Create a new table
I have the following data with me already. Table 1 Consists of Column A , Column B , Column C Table 2 Consists of Column D , Column E Now i want to create a new table as Table 3 Consis...
- 6 years ago
Hi Anonymous ,
At first, you need to add an index column( start from 0 ) in the first table.
Then add a custom column like the following codes:
=Table.AddColumn(#"Added Index", "Column4", each TableB{[Index]}[Column4])
v-eachen-msft
6 years agoCommunity Support
Hi Anonymous ,
At first, you need to add an index column( start from 0 ) in the first table.
Then add a custom column like the following codes:
=Table.AddColumn(#"Added Index", "Column4", each TableB{[Index]}[Column4])