I am trying to store a field value in a variable using the below code , myvariable gets some tiddlers maching the filter, then myvariable2 captures their “myfield” field value , but i must be doing something wrong because mybariable2 doesnt seem to show any results
Have a closer look at the set-widget documentation. Especially the tiddler parameter is a “read” parameter. … It’s not the way how it works. You’ll need to define the “value” param.
The first $set widget sets myvariable to a LIST of tiddler titles that match the [tag[done] filter. Then, in the second $set widget, you use <<myvariable>> as the value for the tiddler param, but that param expects a SINGLE tiddler title.
If you want to display the myfield value for each title, you could do something like this: