I would like to create formula, that finds overlapping times within one date interval for excample:
datetime_in - datetime out
11.07.2017 08:00 - 11.07.2017 09:00
11.07.2017 08:20 - 11.07.2017 10:00
11.07.2017 10:10 - 11.07.2017 14:20
11.07.2017 12:00 - 11.07.2017 14:25
12.07.2017 08:00 - 12.07.2017 09:00
12.07.2017 08:20 - 12.07.2017 08:40
12.07.2017 10:00 - 12.07.2017 14:30
12.07.2017 12:00 - 12.07.2017 14:45
Formula corrected datetime_in - corrected datetime_out
11.07.2017 08:00 - 11.07.2017 09:00
11.07.2017 09:00 - 11.07.2017 10:00
11.07.2017 10:10 - 11.07.2017 14:20
11.07.2017 14:20 - 11.07.2017 14:25
12.07.2017 08:00 - 12.07.2017 09:00
12.07.2017 09:00 - 12.07.2017 09:00
12.07.2017 10:00 - 12.07.2017 14:30
12.07.2017 14:30 - 12.07.2017 14:45
I have grouped data first by date(month) and second by employee id so ill get a report that displays record for each employee in separate page. Now i need total time that employee recorded within a day without any overlapping times.
datetime_in - datetime out
11.07.2017 08:00 - 11.07.2017 09:00
11.07.2017 08:20 - 11.07.2017 10:00
11.07.2017 10:10 - 11.07.2017 14:20
11.07.2017 12:00 - 11.07.2017 14:25
12.07.2017 08:00 - 12.07.2017 09:00
12.07.2017 08:20 - 12.07.2017 08:40
12.07.2017 10:00 - 12.07.2017 14:30
12.07.2017 12:00 - 12.07.2017 14:45
Formula corrected datetime_in - corrected datetime_out
11.07.2017 08:00 - 11.07.2017 09:00
11.07.2017 09:00 - 11.07.2017 10:00
11.07.2017 10:10 - 11.07.2017 14:20
11.07.2017 14:20 - 11.07.2017 14:25
12.07.2017 08:00 - 12.07.2017 09:00
12.07.2017 09:00 - 12.07.2017 09:00
12.07.2017 10:00 - 12.07.2017 14:30
12.07.2017 14:30 - 12.07.2017 14:45
I have grouped data first by date(month) and second by employee id so ill get a report that displays record for each employee in separate page. Now i need total time that employee recorded within a day without any overlapping times.