S
Scoops
Hi All
I have three jobs that a piece of equipment can perform: one to put
away, and two to pull out.
Each job has one start time and one end time and the three jobs may
overlap either or both of the other two.
What I would like to determine are discrete answers for:
How many hours is only one job active;
How many hours are two jobs active;
How many hours are three jobs active?
The first answer is the total hours minus the sum of the other two
calculations and I can get the hours for two jobs with:
=IF(OR(Finish1<Start2,Start1>Finish2),0,MIN(Finish1,Finish2)-MAX
(Start1,Start2))
(There is a midnight meridian check in the original formula.)
But what's the formula for all three overlapping?
Thanks for any help.
Regards
Steve
I have three jobs that a piece of equipment can perform: one to put
away, and two to pull out.
Each job has one start time and one end time and the three jobs may
overlap either or both of the other two.
What I would like to determine are discrete answers for:
How many hours is only one job active;
How many hours are two jobs active;
How many hours are three jobs active?
The first answer is the total hours minus the sum of the other two
calculations and I can get the hours for two jobs with:
=IF(OR(Finish1<Start2,Start1>Finish2),0,MIN(Finish1,Finish2)-MAX
(Start1,Start2))
(There is a midnight meridian check in the original formula.)
But what's the formula for all three overlapping?
Thanks for any help.
Regards
Steve