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
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
sevenhills
Hi,
Thank you for your proposed solution but I need the count of products finished that is within the manager's respective schedule.
I have tried your proposed solution. It does not differentiate how many products where finished by each manager during the day. It shows the same count of products for Manager A and B for that day.
- sevenhills4 years agoSuper User
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- markefrody4 years agoPost Patron
sevenhills
Hi,
Thank you for the revision. It seems the total per day for 9/27/2021 is not the same as the calculated measure.
Product Count
Calculated Measure- sevenhills4 years agoSuper User
I think what I provided is correct.
Let me say why, In your product count grid, it is not counting empty (string) Produc ID. All these are part of the manager 2 schedule when you verify the data and are on 9/27. You can check the data tab. You have empty Produc ID in your data.
In your Product Count visualization table, you are using default summarization by power bi and it takes only non empty Produc ID.
You can verify using to match the counts:
Measure 3 = CountRows('Production Schedule')What I used is CountRows in my formula!Tune to your requirements whether you want the empty Produc IDs or not!