Forum Discussion
Anonymous
6 years agoNot applicable
Counting Unique Duplicate Email Addresses
Is there a way to count the number of unique email addresses in a column that are duplicated? I want to get the same number as Excel when you remove duplicates; e.g. 114 duplicates were removed. ...
- 6 years ago
Hi Anonymous
If you need distinct count of duplicated rows, try a measure
Measure = COUNTROWS( FILTER( SUMMARIZE('Table', 'Table'[Column1], "Count", COUNT('Table'[Column1])), [Count] > 1 ) )
az38
6 years agoCommunity Champion
Hi Anonymous
If you need distinct count of duplicated rows, try a measure
Measure = COUNTROWS(
FILTER(
SUMMARIZE('Table', 'Table'[Column1], "Count", COUNT('Table'[Column1])),
[Count] > 1
)
)