Forum Discussion
harryrhulme
8 years agoRegular Visitor
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 ...
- 8 years ago
Check rows in the following calculated table.
Table = FILTER ( SUMMARIZECOLUMNS ( Table1[Column1], "Count", COUNTROWS ( Table1 ) ), [Count] > 1 )
v-chuncz-msft
8 years agoCommunity Support
First, you may select "Remove Duplicates" in Query Editor.
Second, check uppercase/lowercase spelling if it is a text field. Text(such as a, A) in query editor is case-sensitive, but not in the data model.
Finally, use SUMMARIZE Function and COUNT Function to have a check.
harryrhulme
8 years agoRegular Visitor
Thank you that has solved the problem for some duplicates.
I am still getting a problem with some data being duplicated even though I have formatted into lowercase - removed duplicates and uppercase - removed duplicates. Do you have any other suggestions as to the formatting issues that could be causing this?
Thank you
- v-chuncz-msft8 years agoCommunity Support
Check rows in the following calculated table.
Table = FILTER ( SUMMARIZECOLUMNS ( Table1[Column1], "Count", COUNTROWS ( Table1 ) ), [Count] > 1 )