Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Relationship between tables

Hi,    I'm having some trouble creating a relationship between 3 tables, which are all related by the column 'metric'. I'd love to link them all so i can then filter/slice by the 'Metric' - Each ta...
  • Phil_Seamark's avatar
    Phil_Seamark
    8 years ago

    This DAX might help create a table that you can then relate your three existing tables to

     

    Table = 
        DISTINCT(
            UNION(
                VALUES('Demo'[METRIC]) ,
                VALUES('Country'[METRIC]) ,
                VALUES('City'[METRIC]) 
                )
          )