Hello, can any one assist me with building a formula that will do flag a date range overlap for any cells that have the same resources allotted to them? I am basically trying to come up with a work around for not having admin rights nor the ability to assign non-human resources. Example of what I am trying to use except ONLY compare date ranges for cells that have the same inputs in the "assigned to" column:
The code I found to do the initial comparison and flag any date overlap is here:
=IF(OR(ISBLANK(Start@row), ISBLANK(Finish@row)), "", IF(COUNTIFS(Finish:Finish, >=Start@row, Start:Start, <=Finish@row) - 1 > 0, 1))
From this thread: https://community.smartsheet.com/discussion/65257/date-range-conflict-vacation-request-sheet
But I need help to modify this so it only compares cells with like values in the assigned to column.
Thank you!