Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JuiceX
New Member

Count distinct by one group then sum as another group

Hi all,

 

Trying to find a solution to my issue.

I am trying to count the number of parts by a group but displayed a sum of another group but cant get the distinctcount straight in my mind. Example below

 

 

I want to count the number of unique parts in a quote, then display that as a sum for the month. If you note the last 3 lines are the same part, I want to count that part as one occurance for quote 1017P and one occurance for quote 1022P which would ultimatly sum to 2 for the month of Nov.

 

DATEQUOTE_NOTRIMMED_NUMBER
1/11/20181017PCPGVE-04011
1/11/20181017PCPGVE-04011
1/11/20181017PCPGVE-04110
1/11/20181017PCPGVE-07011
1/11/20181017PCPGVE-10010RH
1/11/20181017PCPGVE-10010RH
1/11/20181017PCPGVE-20010
1/11/20181017PCPGVE-21031LH
1/11/20181017PCPTTH-04020
1/11/20181022PCPTTH-04020
1/11/20181022PCPTTH-04020

 

Expected output

MonthUnique Parts Per Quote
Nov-188

 

Thanks kindly

1 ACCEPTED SOLUTION
affan
Solution Sage
Solution Sage

Hi @JuiceX,

 

You can use the below measure to get the desired result. Replace 'Table1' with your table name.

 

 

Measure = CALCULATE(COUNTX(SUMMARIZE(Table1,Table1[QUOTE_NO],Table1[TRIMMED_NUMBER]),CALCULATE(VALUES(Table1[TRIMMED_NUMBER]))))

I have tested the same and I got the below result

Distinct.png

 

 

 

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

 

View solution in original post

2 REPLIES 2
affan
Solution Sage
Solution Sage

Hi @JuiceX,

 

You can use the below measure to get the desired result. Replace 'Table1' with your table name.

 

 

Measure = CALCULATE(COUNTX(SUMMARIZE(Table1,Table1[QUOTE_NO],Table1[TRIMMED_NUMBER]),CALCULATE(VALUES(Table1[TRIMMED_NUMBER]))))

I have tested the same and I got the below result

Distinct.png

 

 

 

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

 

Excellent, works, thankyou!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.