Forum Discussion
HunterG
Apr 03, 2026Copper Contributor
Filtering an Array based on a list of Criteria
I have an array that tracks every project that every project manager, project engineer, and superintendent is on and I am trying to set up a function to search through a single list of names and retu...
- Apr 03, 2026
You just need to ADD the conditions together:
=FILTER([projectNames], ([name]=[PM])+([name]=[PE]) + ([name]=[SUP]) )
I notice you said you used ISNUMBER(MATCH)) but not sure why or how you have that setup. I could see ISNUMBER(SEARCH(name, PM)) if that field could contain multiple names (e.g. a list of names) and the name you are searching for may be only 1 in the field.
hope that helps you figure it out but if not maybe more info and a copy of the sheet would hel
Harun24HR
Apr 03, 2026Silver Contributor
You may try COUNTIFS() with FILTER().
=FILTER(A2:B16,COUNTIFS(H2:H4,B2:B16))