Reputation: 466
I need to query a sheet in another sheet and return and filter a list by matches containing. Heres my sheet:
Sheet2:
Sheet1:
Upvotes: 1
Views: 45
Reputation: 1
use FILTER
instead like:
=FILTER(Sheet2!A:B, REGEXMATCH(Sheet2!A:A, TEXTJOIN("|", 1, D2:D)))
Upvotes: 1