I tried to look but I was unable to find this information anywhere on the site.
I am trying to return a selection of my data that fits a criteria in another cell.
I have a sheet (Sheet1) that has ALL my data in it (around 38000 rows) and I need to filter this on another sheet(Sheet2) for one of the columns in this data. For example, if I wanted to return all members that had a 7 in column P on Sheet1? and return all the columns that appeared in Sheet1 in Sheet2
So far I am trying the INDEX(array,MATCH()) way of working but this is only returning the first person that has a 7 in column P and not each individual member. And if I do it on a line by line basis, there will be gaps in the data where it doesn't match and want them all bunched to the top. (I hope that makes sense)
The results show in Sheet2 is using the following formula:
=INDEX(Sheet1!A:A,MATCH($B$1,Sheet1!I:I,0))
Is this something that can actually be achieved?
Please let me know if I am not clear in anything I have asked.