Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello Everyone! I am sending this post to see if someone can help me with this:
I have a table like this:
Account Status
1 Approved
2 Approved
1 Returned
1 Rejected
3 Pending approve
4 Approved
5 Approved
5 Returned
6 Pending approve
7 Approved
7 Returned
I have been trying to get a measure to count duplicates:
Account Status
1 Approved
1 Returned
1 Rejected
5 Approved
5 Returned
7 Approved
7 Returned
Table:
Account Status
1 3
5 2
7 2
The result expected is:
Total: 3 accounts duplicated, 7 times in total. I need a measure for that. I found a lot to count disting but not count duplicates.
Any advice?
Thank you.
Jose.
Solved! Go to Solution.
Ok, now we are talking
my suggestion was only going to work for a table.
Let's try this in order to know how much accounts have duplicates.
Create a Measure:
COUNTOROWS(
FILTER (
ADDCOLUMNS (
SUMMARIZE ( table, table[account] ),
"Duplicates", CALCULATE ( COUNTROWS ( table ) )
),
[Duplicates] > 1
)
)Hope this works to build the card,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Happy to help!
Hi. Can you explain a bit more about your objetive here?
I'm asking because building this is simple:
Table:
Account Status
1 3
5 2
7 2
Just create a table with Account (don't summarize) and then any field of the same table with (count aggregation)
There you have every account and the rows involving it. Then you can filter the table by count > 1 on visual level filter.
Regards,
Happy to help!
Hello and thank you for your answer. I want to have a card visualization of the number of account that have duplicates. I do not want more tables. i tried summarize, group by and then filter > 1 but it does not worked. Also I have a matrix table that shows the accounts and more information. Any help for the measure?
Ok, now we are talking
my suggestion was only going to work for a table.
Let's try this in order to know how much accounts have duplicates.
Create a Measure:
COUNTOROWS(
FILTER (
ADDCOLUMNS (
SUMMARIZE ( table, table[account] ),
"Duplicates", CALCULATE ( COUNTROWS ( table ) )
),
[Duplicates] > 1
)
)Hope this works to build the card,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Happy to help!
Thank you. It works.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |