Forum Discussion

StuartSmith's avatar
StuartSmith
Power Participant
5 years ago
Solved

Duplicate table visual rows.

I have 2 data sets\tables with a relationship (Many to Many with Both as cross directional) of "Country".  I then create a table visual and all columns are from the same table (Carrier Table) and it ...
  • StuartSmith's avatar
    StuartSmith
    5 years ago

    I managed to find a solution over the weekend to prevent the "Many to Many" relationship by creating a new uniqiue column in each table using...

     

    Key = 'Carrier Matrix'[Region] & " - " & 'Carrier Matrix'[Country]& " - " & 'Carrier Matrix'[Carrier]
     
    and this created a 1 to many relationship and seems to work.  It even helped me identify columns on either table that had mis-matching values, such as typo's as they couldnt create a relationship between tables.  Once the typo's had been fixed or row content matched, duplicate columns vanished.
     
    Thanks for reply.