Linked query in attribute browser

Hello,

hope someone could help me to get two conditions into the query of the attribute browser. I have tried: $abc!0 & $def!“abcdefgh”

abc should be empty and def does not contain abcdefgh.

Thank you for your help.

I think you are asking the agent to find notes in which

$abc is not zero and $def is note “abcdefgh”

The operator you want to use is !=, which means “is not equal to”

$abc != 0 & $def != "abcdefg"

Thank you - that is exactly I intended to do