QGIS – Creating Expressions with Multiple ‘IS NOT’ Filters

qgisselect-by-expression

I would like to select features using an expression. I have one field with +-100 different values. I would like to select all values except for two. Something like this:
"FIELD" is NOT ( 'Value1', 'Value2' ), which would then select values 3 up to 98. However, this is all string text, not numbers 1 up to 100.

Any idea how to do this?

Best Answer

"Field" not in ('Value 1', 'Value 2')

This should work for you.