List tiddlers with date value greater than

HI ,

how can i list the titles of all tiddlers with a field value greater than a certain date

<$list filter ="[tag[task]get[endd]compare:date:gt[20230402220000000]]">

i can do this , but it returns the date values stored in the tiddlers matching, how can i list the tiddlers, how can i get the titles to pass in another filter

thanks

1 Like

Use the :filter[...] filter run prefix
(see https://tiddlywiki.com/#Filter%20Filter%20Run%20Prefix)

<$list filter ="[tag[task]] :filter[get[endd]compare:date:gt[20230402220000000]]">
4 Likes

Thanks, Eric. This is such an important tool. Iā€™m sure Iā€™ve run up against needing to pause and insert this :filter prefix many times, and I have repeatedly sought more roundabout ways to get the list to come out as intended.

I hope Iā€™ll remember it the next time I feel like I need a filter to ā€œtake a step backā€ from the results itā€™s yielding.

1 Like

Thank you very much eric