Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |