On my tiddler I have a field where the field name is of the format another.tiddler.name (the field value is present but not relevant for this question). I am able to list these in the right format with use of a macro, so I am able to link to Another Tiddler Name with a macro like this;
@@text-transform: capitalize;<$text text={{{ [[$text$]search-replace:gi[.],[ ]] }}} />@@
and a list filter like this;
<$list filter="[all[current]fields[]sort[title]] -text -created -modified -tags -title -tmap.id" variable=“listItem”>
<$transclude tiddler="<$macrocall $name=“replaceFullStopAndCapitalize” text=<>/>" field=“cost”/>
</$list>
The problem I have is that its rendering as actual text rather than as the value, so instead of showing fieldValue it shows
<$transclude tiddler=“Another Tiddler Name” field=“cost”/>
The second problem, and while it would be nice, I can probably live without a solution to it, is that the field cost is a NUMBER and I would like to sum the numbers up and then output the sum. if I can only output the number I can make do but the sum would be really useful.
My current WIP is here Galactic Heroes — A Starwars Ruleset and I am using the plugin $:/plugins/ebalster/formula for the math’s