1)<<list filter "[tag[blog NOT excludeLists]]">> 2)<<list filter "[tag[blog OR (note NOT excludeLists]]">>
The NOT operator is different from AND and OR... instead of going in between two tag terms, NOT precedes a *single* tag term... thus: <<list filter "[tag[NOT excludeLists]]">> You can combine the negated term with other terms using AND/OR, like this: <<list filter "[tag[blog AND NOT excludeLists]]">> or <<list filter "[tag[(blog OR note) AND NOT excludeLists]]">> Note the parens in the second example... this makes the expression match tiddler tagged with "blog" or "note", as long as they are not also tagged with 'excludeLists'. In comparison: <<list filter "[tag[blog OR (note AND NOT excludeLists)]]">> would match all tiddlers tagged with 'blog' (even if they are also tagged with 'excludeLists'), plus all tiddlers tagged with 'note' that are also *not* tagged with 'excludeLists'. enjoy, -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

