Hello,
I have 2 sheets. The first is to record time off requests:
The second sheet is for scheduling events:
Now, if an employee has requested time off on the Time Off sheet, and a date during that request coincides with a date and time on the Event sheet, I would like it to list "OOO" in that employee's column.
I have been working on an IF(COUNTIFS()) formula that I can apply to each column but I can't seem to get it 100% right. We use military time (ex. 0600, 1300, 2400), which seems to be causing some issues when I try to use => or =<.
Here is a part of my formula in progress for reference: =IF(COUNTIFS({Name}, [Employee 1]1, {Start Date}, <=Date@row, {End Date}, >=Date@row, {Start Time}, >=[Event Start Time]@row, {End Time}, >=[Event End Time]@row) > 0, "OOO", "Available")
Does anyone have any advice/solution on this?
Thank you!