Hello,
I'm trying to get a formula that'll calculate the TAT, considering break times that may pause production. I found a great thread here from some years ago I Need a formula to calculate the Turn Around Time that answers 90% of my question. With the solution posted there,
I'm trying to get a formula that'll calculate the TAT, considering break times that may pause production. I found a great thread here from some years ago I Need a formula to calculate the Turn Around Time that answers 90% of my question. With the solution posted there,
How could I take this and implement the subtraction of scheduled breaks? I have a break from 10-10:10, lunch from 12:30-13:00, and another break from 15:00-15:10. So essentially if my start and end time run between any of those breaks, the formula will subtract that time from the result. Any help is appreciated, thank you!Re: I Need a formual to calculate the Turn Around Time
If you have start time/date in A2 and end time/date in B2 you can use this formula in C2
=(NETWORKDAYS(A2,B2)-1)*("17:00"-"8:00")+IF(NETWORKDAYS(B2,B2),MEDIAN(MOD(B2,1),"17:00","8:00"),"17:00")-MEDIAN(NETWORKDAYS(A2,A2)*MOD(A2,1),"17:00","8:00")
format C2 as [h]:mm