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
dom
Frequent Visitor

Distinct count but only if value exists in another table weekly

Hello Power BI friends

I wonder if you help me solve the challenge I have.

The data model has 3 tables calendar, table 1 with SKUs planned for production and table 2 SKUs actually produced. I need to calculate weekly adherence to the production plan - count the number of SKUs produced but only if they were planned ( exists in table 1). Here is my table structure:

TABLE 1 - products planned for production

dom_1-1621404486585.png

Table 2 products actually produced

dom_2-1621404520044.png

Below is an example of what  I would like to achieve:

Week no       #SKUS planned      #SKUs planned and filled        Adherence to plan (SKUs produced/ SKUsplanned)

1                             120                                100                                    83%

2                             180                                179                                    99%

I would appreciate your help

Thanks

Dom

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@dom , Try a measure like

#SKUs planned and filled = calculate(distinctcount(Table2[SKU]), filter(Table2, Table2[sku] in values(Table1[sku])))

 

you can also explore treatas

https://www.sqlbi.com/articles/propagate-filters-using-treatas-in-dax/

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@dom , Try a measure like

#SKUs planned and filled = calculate(distinctcount(Table2[SKU]), filter(Table2, Table2[sku] in values(Table1[sku])))

 

you can also explore treatas

https://www.sqlbi.com/articles/propagate-filters-using-treatas-in-dax/

thanks @amitchandak that worked 🙂

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.

Top Solution Authors