Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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. 14393 records remain.
I think the latter number I can get just by a DISTINCTCOUNT, but the number of duplicates being removed is tricky as there are 2 of some, and more of others so can't do a simple divide.
Help!
Solved! Go to Solution.
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
)
)
Hi @Anonymous
answers above seems helpful.
If your problem is sloved, please feel free to accept any of them as a solution so to close the case.
If not, please tell me other details to explore this problem.
Best Regards
Maggie
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
)
)
@Anonymous
you can use countrows() - distintcount(). Then the result is the duplicated values will be removed.
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 50 | |
| 34 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 77 | |
| 41 | |
| 26 | |
| 26 |