I'm updating this question to an EXCEL FORMAT. I'm currently trying to pull data from the Workers column into a new sheet via Index Match, printing the workers' names each time they show up in a particular date range.
Currently, the equation I have is:
Index(Sheet1!A:A, match(if(Sheet1!C:C<=A2),if('Sheet1D:D>=B2),if('Sheet1!B:B=C2),True,False),False),False)),0),1)
But it seems to only be pulling the first name in the column and not the second name according to company and date range. Any sort of help pointing me in the right direction would be helpful. Thanks.
***Edit*** I was unable to delete the original post.
Workers | Company | Start Date | End Date |
Jane Smith | Microsoft | 02/03/2022 | 03/31/2022 |
Mike Roberts | 03/01/2022 | 06/30/2022 | |
Aaron Smith | 02/01/2022 | 04/30/2022 | |
Fred Birch | Microsoft | 4/01/2022 | 4/30/2022 |
Currently, the equation I have is:
Index(Sheet1!A:A, match(if(Sheet1!C:C<=A2),if('Sheet1D:D>=B2),if('Sheet1!B:B=C2),True,False),False),False)),0),1)
But it seems to only be pulling the first name in the column and not the second name according to company and date range. Any sort of help pointing me in the right direction would be helpful. Thanks.
Start Date | End Date | Company | Workers |
01/01/2022 | 01/31/2022 | Microsoft | |
02/01/2022 | 02/28/2022 | Microsoft | |
03/01/2022 | 03/31/2022 | Microsoft | |
04/01/2022 | 04/30/2022 | Microsoft | |
05/01/2022 | 05/31/2022 | Microsoft |
***Edit*** I was unable to delete the original post.