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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors