On Wednesday, December 23, 2020 at 4:16:11 AM UTC-8 Erwan wrote: > I'm trying to obtain a list of unique "answers" from a list of questions > like this: > <$list filter="[tag[question]get[answer]]"> > > </$list> > ...there can be several "question" tiddlers with the same answer... > I would like to obtain this list but without duplicates. >
Use the "each:value[]" filter, like this: <$list filter="[tag[question]get[answer]each:value[]]"> </$list> see https://tiddlywiki.com/#each%20Operator for more info. enjoy, -e -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/8ad15e8b-e000-4812-b81f-7897ec279522n%40googlegroups.com.

