I imagine this is simple but that my brains is just not seeing it.
I have a list in which I want to display the value of a dynamically calculated field name. I have stored a reference to the current tiddler in tid
and the field name in field
. This is not right:
<td><$text text={{<<tid>>!!<field>>}} /></td>
Nor is this:
<td><$text text={{<tid>!!<field>}} /></td>
Or this:
<td><$text text={{{ [<tid>] +[get[<field>]] }}} /></td>
Not a dozen or two other variants I’ve tried. But I assume you can see what I’m trying to do. What syntax trick am I missing this time?