Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
I have a table of client complains and i need to count the recurrences, how can i do that?
a recurrence is a more than one row with the same client id, the same address and the same category.
my table looks like this:
row id | client id | address | category
1 1 St. Paul not delivered
2 2 St. Mary damaged
3 1 St. Paul not delivered
4 1 St. Paul damaged
in this case row 4 isn't a recurrence
Hi @Anonymous ,
Create a measure
Recurrence =
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Client ID]
= MAX ( 'Table'[Client ID] )
&& 'Table'[Address]
= MAX ( 'Table'[Address] )
&& 'Table'[Category]
= MAX ( 'Table'[Category] )
)
)
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |