Home > Blockchain >  How to use query function to exclude names based on criteria from another sheet?
How to use query function to exclude names based on criteria from another sheet?

Time:12-01

How to use query function to exclude names based on criteria from another sheet ? Thank you

enter image description here

CodePudding user response:

use:

=QUERY({A2:B}, "where not Col1 matches '"&TEXTJOIN("|", 1, Criteria!A:A)&"'")

enter image description here

  • Related