Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Icon for Administrator rankAdministrator
4 years ago
Solved

Join 3 tables with DAX

Good morning community, again I turn to your help, if anyone can help me:

Cesarin_0-1639348607066.png

You have 3 tables, the 3 tables were created from a mother table that had everything together in columns; I separated them using DAX;

These 3 tables in DAX have a column in common that is called "ID", You need to join these 3 tables based on this common "ID" expecting as a result the following in a single table to the left

Cesarin_1-1639348706362.png

IMPORTANT: I do not use the option to join tables that has power query, because the tables were created with DAX and power query does not read them; must necessarily be with dax

  • Syndicate_Admin  you can write this two measures and it will return the fully joined table

    _Ren_Rendimiento = MAX(rendimiento[Ren_Rendimiento])
    
    _ut_Utilizacion = MAX(utilizacion[ut_Utilizacion])

     

     

     

     

8 Replies