Forum Discussion
Product Count Based on Shift
- 4 years ago
My bad, I misunderstood.
I kept the same changes mentioned above and added a new measure and created new visual. Please see if this helpsa) Created a measure part of manager schedule
Prod Count = var _d1 = Minx('Manager Schedule', 'Manager Schedule'[Start Time]) var _d2 = Minx('Manager Schedule', 'Manager Schedule'[Clock Out]) var _Prod_count = CALCULATE( COUNTROWS('Production Schedule'), FILTER('Production Schedule', 'Production Schedule'[Date Finished] >= _d1 && 'Production Schedule'[Date Finished] <= _d2)) return _Prod_count
Hi,
Since you want the output to be date wise, I am assuming that the time stamp appearing in each of the 2 tables is not required.
Ashish_Mathur
Hi Ashish,
Thank you for your reply.
For the output, time stamp is not required.
Best regards,
Mark V.
- Ashish_Mathur4 years agoSuper User
Hi,
There should be another table which maps the products to managers.
- markefrody4 years agoPost Patron
Ashish_Mathur
Hi Ashish,
I have created a pbix with date table to connect the tables together.
https://www.dropbox.com/s/mh1146kycg2hq1k/Product%20Count%20Based%20On%20Shift.pbix?dl=0
Please let me know if this helps. Thanks.
Best regards,
Mark V.- sevenhills4 years agoSuper User
1. Create column as Date part only
Date Finished DT = DATEVALUE('Production Schedule'[Date Finished])mark the format as "mm/dd/yyyy" to the new column
similar format to Manager schedule - start date column.
2. Adjust the model and see if it works for your needs
See if this helps