Hello,
I am able to get two counts :
* Number of untagged tiddlers :
<$count filter="[untagged[]!prefix[$]]"/>
* Number of tiddlers with a specific tag :
<$count filter="[!is[system]tag[A_trier]sort[created]]"/>
Is it possible to get the sum of these both counts ?
<$count filter="[!is[system]tag[A_trier]sort[created]]"/>+<$count filter="[untagged[]!prefix[$]]"/>
Thanks