<$transclude tiddler={{!!sourcename}} field="myfield"/>to set a field value you must do it interactively or use a trigger like a button to trigger an action widget.
In your case the new field will be set to the value of the old field perhaps using actionsetfield.
Will that help you to the next step?
Regards
Tony
to set a field value ...
When trying to use information that's stashed in a field, I often find it easiest to use the widget syntax. In your case, I would use the transclude widget in the target tiddler.<$transclude tiddler={{!!sourcename}} field="myfield"/>
<$view tiddler={{!!sourcename}} field="myfield" /><$tiddler tiddler={{!!sourcename}}>{{!!myfield}}</$tiddler>Thanks all for the help! This worked.Just so I can learn with my mistakes, what was wrong about my thinking when I did this\?:
{{{{!!sourcename}}!!myfield}}
Just so I can learn with my mistakes, what was wrong about my thinking when I did this\?:{{{{!!sourcename}}!!myfield}}
<<something param:<<somethingelse>> >>
<$somewidget param=<$someotherwidget ... /><$somewidget param="some <<macro>> text" /><$somewidget param1="some text" param2=<<somemacro ...>> /><$somewidget param={{{ [...somefilter...] }}} />
<div class=<<somemacro>> style=<<someothermacro>>>...</div><div class=<<somemacro>> style="color:<<someothermacro>>" >...</div><div class=<<somemacro>> style={{{ [[color:]addsuffix<somevariable>] }}} >...</div>
\define myTrans() {{$(tid)$!!$(field)$}}
<$vars tid=... field=... >
<<mytrans>>
</$vars>
<div class=<<somemacro>> style={{{ [[color:]addsuffix<somevariable>] }}} >...</div>
\define myDiv() <div class="$(class)$" style="color:$(color)$" >...</div>
<$vars class=... color=...>
<<myDiv>>
</$vars>