> Hello,
>
> Basically I am trying to have something I can look at to see tiddlers from 
> previous years that have the same month and day as today. For example, I 
> could look and see all Tiddlers created on 11 August, from 2018, 2017, etc. 
>
> I've been trying to get it to work, but I'm not having any luck.
>
> Any suggestions?
>

Hi Josh, this might work:

<$set name="todayMonthDay" value=<<now 0MM0DD>>>
<$list filter="[all[tiddlers]]" variable="tiddler">
<$set name="monthDay" value={{{ 
[<tiddler>get[created]split[]last[13]first[4]join[]] 
}}}>
<$list filter="[<monthDay>match<todayMonthDay>]">

<<tiddler>>

</$list>
</$set>
</$list>
</$set>



> Cheers,
> Josh
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/98f46c58-8063-4388-bcff-900e8d91f4bf%40googlegroups.com.

Reply via email to