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?
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:
-e
There were also system tiddlers showing, which can be fixed with:
<$list filter = "[!is[system]sameday:created{!!created}]">
</$list>
Also cheers :)))