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
Anonymous
Not applicable

Sum a distinct count of a group

I want to sum a distinct count of a group so I can use the sum in other calculations.

 

  • For example, I have a group of building materials called "paint."
  • Paint has a subgroup of "paint types." These each have unique SKUs that give a count.
  • How do I get the count of building materials in the example below and display it in every row? These add up to the sum of the "Paint" Building Material.

 

Building MaterialSubgroupCount Building MaterialCount SKUs
PaintBlue50129
PaintRed50199
PaintYellow501373
FastenersNails23656
...   

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

We can use SUMX and DISTINCTCOUNT function to meet your requirement.

 

Measure Count Building Material =
SUMX (
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Building Material] = MAX ( 'Table'[Building Material] )
    ),
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Count SKUs] ) )
)

 

Sum1.jpg

 

If it doesn't meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
parry2k
Super User
Super User

@Anonymous try this measure

 

Count = 
CALCULATE ( SUM ( Table[Material Count Skus], ALLEXCEPT ( Table, Table[Building] ) )

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

Building MaterialSubgroupCount Building MaterialCount SKUs
PaintBlue41ZEDRFDS
PaintRed434SDFDS
PaintYellow4DGDFSGH3
PaintYellow4EGDFDGS3
FastenersNails1SDFWEW2
...   

 

Thanks, parry. I actually need a distinctcount of the skus, as I said in the title. Sorry, if the example I gave was bad. Here is hopefully a better example of what I am after.

 

I want to show the total distinctcount for all of the SKUs for the  Paint group, at the row level. How would I achieve that?

Hi @Anonymous ,

 

We can use SUMX and DISTINCTCOUNT function to meet your requirement.

 

Measure Count Building Material =
SUMX (
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Building Material] = MAX ( 'Table'[Building Material] )
    ),
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Count SKUs] ) )
)

 

Sum1.jpg

 

If it doesn't meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-zhenbw-msft 
Thank you for your solution.


I got the same requirement to count the sum of distinct instance ids for a group of dates. When i used ALLSELECTED('TableName') it didn't work. instead of taking the whole table i took the respective columns inside ALLSELECTED and it worked.
Instance Count=

SUMX (
    FILTER (
        ALLSELECTED ( 'Table[respective Col1]','Table[Respective Col2]' ),
        'Table'[Either Respective Col1 or Respective Col2] = MAX ( 'Table'[Either Respective Col1 or Respective Col2] )
    ),
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Instance IDs] ) )
)




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.