I have a working REGEXMATCH based formula
=ArrayFormula(if( REGEXMATCH(topProdukte!AV2,"^si|si\d+|si-"), topProdukte!AV2, "NO"))
Now I try to add an AND NOT condition and fail on something. I try it with negative lookahead
=ArrayFormula(if( REGEXMATCH(topProdukte!AV2,"^(?!sia)si|si\d+|si-"), topProdukte!AV2, "NO"))
as adviced in https://stackoverflow.com/a/3194881/1992004 - but get an error #REF, not valid regex.
Finally I need to match strings containing ^si|si\d+|si-
, but not containing *sia*
.