Hello,
I am hitting my next wall. And again my lack of full understanding of TW is stopping me.
For my project I create a tiddler every day which which has a tag and 2 fields week and year. The title is made up of the day of the week plus the week and year to make it unique
What I would like to achieve is to group them by year and each year would list all the weeks under it.
<$list filter="[!is[system]each[year]get[year]]" >
<br>
<h1><$view field=title /></h1>
<$set name="thisyear" value={{!!title}} >
<$list filter="[!is[system]year[<<thisyear>>]]">
<$link to={{!!week}}>Week <$view field=week /><br></$link>
</$list>
</$set>
</$list>
That code list the year as expected but the next list is not printing anything. I think the problem is with either the $set or the "year[<<thisyear>>] which is most likely not the correct syntax. I just can't work out how to do it the right way