Forum Discussion

harryrhulme's avatar
harryrhulme
Regular Visitor
8 years ago
Solved

Relationships between large datasets

Hello,   I am trying to create a relationship table between two large data sets. I have created a relationship table containing unique data, no blank rows and there are over 30,000 data entries. I ...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    harryrhulme,

     

    Check rows in the following calculated table.

    Table =
    FILTER (
        SUMMARIZECOLUMNS ( Table1[Column1], "Count", COUNTROWS ( Table1 ) ),
        [Count] > 1
    )