Forum Discussion

WijnantsRMJ's avatar
WijnantsRMJ
Regular Visitor
4 years ago
Solved

Count tickets per shift

Hi all,   We're working with 3 shifts: Shift 1 starts at 7:15 until 15:15 Shift 2 starts at 15:15 until 23:15 Shift 3 starts at 23:15 until 7:15 Count the tickets for shift 1 and 2 is easy, b...
  • WijnantsRMJ's avatar
    4 years ago

    Hi, Ifound a different solution. I'm using this one which works for me: 

     

    ShiftOpenDate =
        IF(TIMEVALUE(INCIDENTS[OpenedDateTime]) >23 /24, INCIDENTS[OpenedDate] + 1, INCIDENTS[OpenedDate])
     
    Also the Night shift started on 23:00 instead of 23:15, which makes this easier.