Filters needed: Tiddlers that have tags vs tiddlers that do not have tags

Title says it all…

Thanks in advance…

Although the tags field is frequently handled as a list of space-separated, bracketed tags, it can also be treated as just a regular text string, like any other field.

The has[fieldname] filter operator tests to see if the specified fieldname has a non-blank value. Similarly !has[fieldname] tests to see if the specified fieldname is blank or missing.

To list all tiddlers that have tags:

<$list filter="[all[tiddlers]has[tags]]"><$link/><br></$list>

and to list all tiddlers that do NOT have tags:

<$list filter="[all[tiddlers]!has[tags]]"><$link/><br></$list>

-e

Thanks Eric! I thought I tried that last night but apparently I didn’t! Easy solution.