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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hello, I'm struggelling with a problem since more than 16 hours now...
I have 2 table with many to many link between Name and ArticleCode
Name table look like that
| Name | ID |
| xxx | 1234 |
| xxx | 2514 |
| bbb | 1234 |
| bbb | 3569 |
| aaa | 1234 |
ArticleCode table:
| ArticleCode | ID |
| aaaaaaaaaa | 1234 |
| ssssssssssss | 1234 |
| aaaaaaaaaa | 3569 |
| bbbbbbbb | 2514 |
I would like to count the number of unique ArticleCode found for each unique Name and sum it in one measure to be display in a card.
Any ideas how to do it ? I'd try distinctcount, sum, sumx, count and various combination already...
Solved! Go to Solution.
@eehp What's the answer for the supplied data? I get 7 using this:
Measure = SUMX(SUMMARIZE('Table',[Name],"__Count",COUNTROWS(DISTINCT('Table2'[ArticleCode]))),[__Count])
@eehp What's the answer for the supplied data? I get 7 using this:
Measure = SUMX(SUMMARIZE('Table',[Name],"__Count",COUNTROWS(DISTINCT('Table2'[ArticleCode]))),[__Count])
For the supplied data it's 7 yes. I'll check on the whole dataset and valide the answer if correct but it's look promising to me 😄
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 54 | |
| 43 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 123 | |
| 107 | |
| 44 | |
| 32 | |
| 24 |