Hi all,
I need some help with a formula which I believe I almost crack but I don't know what I'm still missing here, I want to flag overlapping tasks across multiple days and times, as you can see below, I have different columns: Start date, end date, start time, end time. Start and finish are just switching the time columns into numerical values. I need this formula to look any tasks that overlap based on date and time across days, (you can see the overlap with the gantt chart as well) using that "OK" column, currently my formula is like the one below, sometimes it works, but sometimes it doesn't flag the tasks even if they overlap, hopefully someone can help! thanks! much appreciated.
=IF(COUNTIFS([End Date]:[End Date], >=[Start Date]@row, [Start Date]:[Start Date], <=[End Date]@row, Finish:Finish, @cell >= Start@row, Start:Start, @cell <= Finish@row) > 1, 1)
-T