I have a question that I may not be thinking right about. But I have a long excel file that I am extracting from another place with the following columns:
Project_Name1, Employee_Name1, Date_Worked1, Hours_Worked1
In another sheet, I have these columns
Project_Name2, Employee_Name2, Begin_Date2, End_Date2, Hours_Worked2
This second sheet is filled with data and works great. However, it turns out that I have names of employees who I donโt know who are also working on the same project. I need to find out the names of employees, and then summarize the number of hours during which they worked for a certain period. So I need a search with three criteria:
Project_Name1 = Project_Name2
Employee_Name1 <> {Array of Employee_Name2}
Begin_Date2 <= Date_Worked1> End_Date2
The returned name of the employee.
Once I have the name of the employee, I can do sumifs = () and get the total number of hours during which they did not work.
I tried several combinations of Match Match functions using ctrl-shift-enter ... and couldn't figure it out. Any help would be greatly appreciated.
source share