How to filter tiddlers that were made today

I’ve been trying to make a query to find tiddlers made on a certain day on a journal tiddler.

The closest I’ve got is to:

[filed:created[{{!!Created}}]]

but that really doesn’t work. What can I do?

In a given Journal tiddler, to list tiddlers that were created on the same day as that Journal tiddler, you can write:

<$list filter="[sameday:created{!!created}]">

</$list>

see https://tiddlywiki.com/#sameday%20Operator

Notes:

  • when writing filter syntax, the brackets surrounding a filter operator’s parameter are used to indicate how that parameter value is to be processed:
    • square brackets surround literal text
    • angle brackets surround references to variables
    • curly brackets surround references to tiddler fields

-e

2 Likes

There were also system tiddlers showing, which can be fixed with:

<$list filter = "[!is[system]sameday:created{!!created}]">
</$list>

Also cheers :)))

1 Like