Steven
Steven

Reputation: 401

Google sheet - lookup multiple values in a range and return only with rows that DON'T match

The lookup values are in column C and D in the first table (pic 1). I am looking for a formula (query, arrayformula, etc) which would:

  1. return ALL the rows from the second table (pic 2) IF non of the values match in column F:O AND
  2. filter only the results where column E (pic 2) matches with cell D2 (pic 1).

I hope it makes sense.

Here is a link to the spreadsheet: Google Sheet

enter image description here

enter image description here

Upvotes: 1

Views: 1311

Answers (1)

player0
player0

Reputation: 1

={'Classroom Management'!D1:E1; 
 FILTER('Classroom Management'!D10:E, 'Classroom Management'!E10:E=D2, 
 NOT(REGEXMATCH('Classroom Management'!Z10:Z, TEXTJOIN("|", 1, C2:C11))))}

0

Upvotes: 1

Related Questions