shifts
2 TopicsGenerate calendar with shift rotation
Hi, I am struggling to create a DAX formula to generate a calendar (datetime table) with four-day rotation. Every shift is working 12 hours between 07:00 - 18:59, then a pause of 24 hours; again 12 working hours between 19:00 - 06:59, then a pause of 48 hours. This is a pattern I want to extend for the whole 2023 year: 13.03.2023 07:00 Shift 1 13.03.2023 19:00 Shift 3 14.03.2023 07:00 Shift 4 14.03.2023 19:00 Shift 1 15.03.2023 07:00 Shift 2 15.03.2023 19:00 Shift 4 16.03.2023 07:00 Shift 3 16.03.2023 19:00 Shift 2 Because this message cannot exceed 20,000 characters, I deleted the rows with hours between 07:00 - 19:00 and 19:00 - 07:00, but I need them too in the generated table to create relashionship with other table. Thank you!Solved2KViews0likes3CommentsMeasure a work shift based on multiple datetime values
Hi community, I have been trying to create a formula using DAX that would calculate working shift hours based on "Index". The work shift starts when the first order is taken(Order Start) and ends when there's an interval of more than X hours between Order End and next Order Start or between Order Start and Last Order End, it doesn't really matter. My last formula that I have created, which I will insert below, kind of worked but the problem is that it takes too long to load 10 000+ records. VAR _orderDifference = DATEDIFF('Taxi Bolt'[Order DateTime Start], 'Taxi Bolt'[Order DateTime End],MINUTE) VAR _lastDateTime = CALCULATE(MAX( 'Taxi Bolt'[Order DateTime End] ), FILTER( 'Taxi Bolt', DATEDIFF([Order DateTime End], EARLIER([Order DateTime End]), MINUTE) >= 0 && 'Taxi Bolt'[Index]=EARLIER([Index]) && [Order DateTime End] <> EARLIER([Order DateTime End] )) ) VAR _betweenOrdersTime = DATEDIFF(_nextDateTime, 'Taxi Bolt'[Order DateTime Start],MINUTE) VAR _total = _orderDifference + _betweenOrdersTime return IF(_betweenOrdersTime > 120 , 0, _total ) Is anyone able to help me how to optimize this code or rewrite in the way that it will take faster to calculate and return the result?Solved671Views0likes1Comment