Forum Discussion
Merging columns from two tables onto a third table based on criteria
- 2 years ago
Hi Pintobean80 ,
As the method provided by PijushRoy says, you can use the Merge query method.
You may also consider using dax to solve the problem,please refer to the following content.My Sample:
Table A:
Table B:
Based on your description, Please try code as below to create Calculated Table.
Table3 = NATURALINNERJOIN(NATURALINNERJOIN('Table1',VALUES('Table2'[Job Title])),VALUES('Table2'[Age]))Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Pintobean80 ,
As the method provided by PijushRoy says, you can use the Merge query method.
You may also consider using dax to solve the problem,please refer to the following content.
My Sample:
Table A:
Table B:
Based on your description, Please try code as below to create Calculated Table.
Table3 = NATURALINNERJOIN(NATURALINNERJOIN('Table1',VALUES('Table2'[Job Title])),VALUES('Table2'[Age]))
Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.