I'm pretty sure it can't be done without an additional count filter and or macro -- AFAIK the results of the widget aren't available for use in the filter.
It looks like Tobias Beer may have what you're looking for, or at least a good start: http://tobibeer.github.io/tw5-plugins/#count I'm thinking that you might have to have an outer list that uses a filter of all known numerical counts values like "5 4 3 2 1" and then use and inner list with that matches those counts. This does mean that you will have to know your possible number ranges in advance. As an example, I dropped this into a new tiddler at Tobias' site: <$list filter="6 3 1" variable="cnt"> !!<<cnt>> <$list filter="[tags[]!is[system]]" > <$set name="tagx" value=<<currentTiddler>> > <$list filter="[all[current]tagging[]] +[count<cnt>]"><b><<tagx>></b><br/> </$list> <$list filter="[all[current]tagging[]] +[count:$<cnt>]"><$view field="title"/><br/></$list> </$set> </$list> </$list> This shows the tags and the tiddlers they tag for where the number of tags is 6, 3, or 1. Maybe this is a start? Good luck, Mark On Tuesday, March 7, 2017 at 4:50:59 PM UTC-8, Dave wrote: > > Okay, how about this (same idea but with tags) > > <$list filter="[tags[]!is[system]sort[title]]"> > <span class="cloud"> > <$transclude tiddler="$:/core/ui/TagTemplate"/> > <$count filter="[all[current]tagging[]]"/> > </span> > </$list> > > > is there a way to sort by the "count" number given? > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/eb6e474c-3cbe-46a8-94ca-ef9e8b13fbc0%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

