Forum Discussion
Create new column based fields from different tables
- 4 years ago
Hi Ayappan ,
Maybe you should create relationships between these tables base on primary column like date or ID. If you just want plus them directly, you can add index column in power query editor.
(assume primary column is [index] )
Then use below expression to get column5 in tableA.
Column5 =
DIVIDE (
[column1] + RELATED ( TableB[column3] ),
[column2] + RELATED ( TableB[column4] )
)Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Ayappan ,
Maybe you should create relationships between these tables base on primary column like date or ID. If you just want plus them directly, you can add index column in power query editor.
(assume primary column is [index] )
Then use below expression to get column5 in tableA.
DIVIDE (
[column1] + RELATED ( TableB[column3] ),
[column2] + RELATED ( TableB[column4] )
)
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.