Hello!
To generate a list of overdue recurrent tiddlers I’m currently using a nested list so I can compare for each tiddler whether they haven’t been interacted with in the period defined for each tiddler (frequency). Something like this:
<$list filter="[has[frequency]]">
<$list filter="[all[current]!days:last-contact{!!frequency}]">
<$link><$view field=“title”/></$link>
</$list>
</$list>
Now due to the second list loop handling only a single title at a time, I’m unable to extract any statistical insights out of this, such as count[] -ing all the overdue tiddlers to calculate their percentage or getting the sum[] of a field value the tiddlers share (e.g. time requirement).
Could the overdue filtering process be handled with a single list loop in any way?
Or is it perhaps possible to set a variable inside the inner list loop that would additively store the value for each item inside the inner list? Could you suggest any other way to approach this problem?
Thanks a lot
0