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

Count a store selling all products

I want to count a store if it carries all 7 SKUs.  But if a store does not carry all 7 SKUs I do not want to count it.  As an example, customer is on the left and the skus are each column.  I would want to count 3 as only 3 customers carry all 7 skus even though there are 4 stores.

 

ahmoosvi_0-1596577745072.png

 

3 REPLIES 3
Icey
Community Support
Community Support

Hi @Anonymous ,

 

What is the structure of your data in Power BI Desktop? 

 

 

Best Regards,

Icey

amitchandak
Super User
Super User

@Anonymous , Try this

Count of store sell all 7 SKU

Count of Store = countx(filter(Summarize(Table[Store], "_1",DISTINCTCOUNT(Table2[SKU])),[_1]>=7),[Store])

mahoneypat
Employee
Employee

If not already, you should unpivot your SKU columns to simplify your DAX analysis.  If all SKUs are in same column,you could use an approach like this

 

Stores Selling All SKUs = COUNTROWS(FILTER(DISTINCT(Table[Store]), CALCULATE(DISTINCTCOUNT(Table2[SKU])) = 7))

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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.