Function for similar to Contains() to check does not contain

Is there any function similar to contains() which is something like doesnotcontain()?

Hi @limratechnologies,

You can reverse the meaning of any expression that returns a boolean result using the ! operator:

 !contains(...)
1 Like

Excellent, thank you

A post was split to a new topic: Postcondition for catching items already present in a list