Filter Question: Modified on or after X

How can you filter for tiddlers modified on or after a specific date?

This should work. The complication being that you have to get your comparison date into format yyyymmdd .

[all[tiddlers]]:filter[get[modified]compare:date:gt[20220815]]

Outstanding! Thanks, @Mark_S!

To get tiddlers modified on that same date, I can just add an additional filter:

Well, you might be able to simply change gt to gteq

The question is how well your date will match if you live far away from the international date line. The comparison date (20220815) might have to be tweaked.

… does the trick.

An important note, for sure. In my case, I’m already thinking in terms of UTC for the date, but being four hours behind that at the moment (and five outside of summer hours) can make a huge difference.