HI,
I have Tiddler1, which has Field1., which holds the value “tiddler2 tiddler3”
i want a button to to update field2 in Tiddler2 and tiddler3 , using the value stored in Field1 in tiddler1 as input titles
<$button>update
<$list filter = "[<currentTiddler>{!!field1}]">
<$action-setfield field2 ="blabla"/>
when i do this ,the value in field1 is not interpreted as a group of titles, but instead as one tittle"tiddler2 tiddler3" and ends up creating a tiddler called “tiddler2 tiddler3” then taking the action there
how can i make the separation , and if this is a wrong approach then what would be the right way of this
thank you