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.
Consider the table below;
I'm looking to create a measure that shows the duplicate count on count name Id pairs without having to create the intermediate calculated column name Id pairs.
Thank you in advance for your time and assistance.
names | ID | name - ID Pairs | count name - ID pairs |
smith | 1100 | smith 1100 | 2 |
borke | 0012 | borke 0012 | 1 |
smith | 1100 | smith 1100 | 2 |
travis | 1234 | travis 1234 | 1 |
amadeus | 0987 | amadeus 0987 | 1 |
Solved! Go to Solution.
Hi @giordafrancis ,
Create a measure
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Hi @giordafrancis ,
Create a measure
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Here you go:
CountPairs =
var __tbl = SUMMARIZE('Table';'Table'[ID];'Table'[names];"c";COUNTROWS('Table'))
return
MINX(__tbl; [c])
As seen here:
File is here.
Please mark as solution if this is what you are looking for. Thumbs up for the effort is appreciated.
Kind regards, Steve.
Proud to be a Super User!
Awesome Keyboard Shortcusts in Power BI, thumbs up if you like the article
My Community Blog Articles (check them out!)
My Blog - Power M code to automatically detect column types -
How to create test data using DAX!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |