cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
eehp
New Member

Sum of Count of distinct occurence for each distinct ID

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

NameID
xxx1234
xxx2514
bbb1234
bbb3569
aaa1234


ArticleCode table:

ArticleCodeID
aaaaaaaaaa1234
ssssssssssss1234
aaaaaaaaaa3569
bbbbbbbb2514

 

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...


1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@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])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@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])

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

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 😄

Helpful resources

Announcements
Join Arun Ulag at MPPC23

Join Arun Ulag at MPPC23

Get a sneak peek into this year's Power Platform Conference Keynote.

PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors