Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
4 years ago
Solved

POWERBI: Join tables through the same column

I have two tables with the same columns and I want to make a union between them, so that I get a table in which I have only the products_id that match each other. Simplifying my case and omitting th...
  • Barthel's avatar
    4 years ago

    Hey,

     

    Based on your example, this function should provide the desired result:

    TOTAL TABLE =
    UNION ( TABLE1, INTERSECT ( TABLE2, TABLE1 ) )

     

    Result: