1
votes

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

1
@player0 link added, thanks!Steven
could you also pls add the desired output?player0

1 Answers

1
votes
={'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