I'm combining the index and match formula in excel to extract data given a specific reference. The problem however, is that my formula only finds the first listed piece of data rather than all the data that matches the reference.
For example,
I want to find ALL the projects that "Joe" is currently assigned to. The data will be pulled from "Project Sheet" which lists all the projects. The data will be pulled into the "Joe Sheet" which will list all Joe's projects. (Joe is in cell A1 of the "Joe Sheet")
My current formula is as follows:
=index('Project Sheet'!A:F,match(A1,'Project Sheet'!G:G,0))
This successfully extracts data but only for the first project that is listed in the "Project Sheet" that Joe is assigned to, rather than all of them.
How do I alter this formula to pull every single project assigned to Joe??
Thanks!!
For example,
I want to find ALL the projects that "Joe" is currently assigned to. The data will be pulled from "Project Sheet" which lists all the projects. The data will be pulled into the "Joe Sheet" which will list all Joe's projects. (Joe is in cell A1 of the "Joe Sheet")
My current formula is as follows:
=index('Project Sheet'!A:F,match(A1,'Project Sheet'!G:G,0))
This successfully extracts data but only for the first project that is listed in the "Project Sheet" that Joe is assigned to, rather than all of them.
How do I alter this formula to pull every single project assigned to Joe??
Thanks!!