Greetings All -
I've got a sheet of data that contains Employees, commitments (including when they are on PTO) and the dates they start and finish those project assignments.
In the below screenshot you can see that Jane is scheduled to be on the Apex project between 4/11 and 4/14.
I'm trying to write an index collect formula that will pull the Assignment name "Apex" where Jane's employee ID exists and the date is (in this example @row is 4/12/25).
My Formula is currently structured as:
=INDEX(COLLECT({Resource Scheduling | Assignment}, {Resource Scheduling | Emp Num}, @cell = "101", {Resource Scheduling | Start}, @cell >= Date@row, {Resource Scheduling | Finish}, @cell <= Date@row), 1)
I'm getting a #Invalid Value error and would appreciate some help on the formula.