Filter overdue tasks on journal entries

Hi all,

trying (failing) to create a simple list, on each Journal tiddler, that shows all tiddlers with tag task that have a field duedate, format YYYY-MM-DD, that are overdue or due, compared to the Journal tiddler created date.

Thanks in advance for any help or pointers.

Hi @jagra and welcome on TalkTiddlyWiki!

You can try something along the lines of:

<$let thisDate={{{ [{!!created}format:date[YYYY-0MM-0DD]] }}} >
<$list filter="[tag[task]] :filter[{!!duedate}compare:string:lteq<thisDate>]"/>
</$let>

It’s hard to test without a representative dataset, but it should work, tell me how it goes!

Fred