This solution makes use of four helper columns to keep track of four conditions of time input. It also assumes that Sunday is not a workday based on no received or end dates and times occurring on Sunday. The formula in column D takes care of most of the times and yields the total time if the start and end times were within the shift:
=IF(AND(OR(MOD(A3,1)<=B$1,MOD(A3,1)>=A$1),OR(MOD(B3,1)<=B$1,MOD(B3,1)>=A$1)),MOD(B3-A3,1)+MAX(IF(OR(AND(MOD(A3,1)<=B$1,MOD(B3,1)<=B$1),AND(MOD(A3,1)>=A$1,MOD(B3,1)>=A$1)),NETWORKDAYS.INTL(A3,B3,11)-1)*10/24,(NETWORKDAYS.INTL(A3,B3,11)-2)*10/24,0))-IF(AND(MOD(A3,1)<=B$1,MOD(B3,1)>=A$1),14/24,0)
The formula for column E yields the total time if the start time is before the beginning of the shift and end time is within the shift:
=IF(AND(MOD(A3,1)<A$1,MOD(A3,1)>B$1,OR(MOD(B3,1)<=B$1,MOD(B3,1)>=A$1)),MOD(MOD(B3,1)-A$1,1)+MAX((NETWORKDAYS(A3,B3,11)-2)*10/24,0))
The formula for column F yields the total time if the start time is within the shift and end time is after the end of the shift:
=IF(AND(OR(MOD(A3,1)>=A$1,MOD(A3,1)<=B$1),MOD(B3,1)>B$1,MOD(B3,1)<A$1),MOD(B$1-MOD(A3,1),1)+MAX((NETWORKDAYS(A3,B3,11)-2)*10/24,0))
The formula for column G yields the total time if the start and end times are not within the shift:
=IF(AND(MOD(A3,1)<A$1,MOD(A3,1)>B$1,MOD(B3,1)<A$1,MOD(B3,1)>B$1),MOD(B$1-A$1,1)+MAX((NETWORKDAYS(A3,B3,11)-2)*10/24,0))
The formula in column C sums the helper columns to yield the cumulative time within the shift. I imagine that someone with fresh eyes can combine the formulas. That said having the formulas separated makes it easier to isolate errors. Attached is a copy of your file with the formulas applied.
Let me know if you have any questions.
Bookmarks