Best explained with an example:
I have a bunch of tiddlers tagged Flashcard, each with a field identifier containing some text.
I want to return all the tiddlers that do not feature the values of any identifier fields within their text.
Initially I tried the following:
<$list filter="[tag[Flashcard]get[identifier]]" variable=flashcardIdentifier>
<$list filter="[!search<flashcardIndicator>]">
<<currentTiddler>>
</$list>
</$list>
Of course this doesn't work because it is applying the search one at a time and is thus returning the tiddlers that don't contain all the identifiers. I want to return the tiddlers that don't contain any identifiers.
Anyway now I'm stuck, so I'm wondering if anyone can help me out?