So there is likely a simple solution to this, but I'm currently working on modifying the Vaults and Deathclaws character sheet, setting up custom roll templates and so on. I've run into an issue in which the macro is referencing an attribute that is, itself, the sum of two other attributes. Case in point: <button type="roll" class="sheet-skill_button" name="attr_strength_roll" value="&{template:stat} {{char-name=@{character_name}}} {{stat-name=Strength}} {{roll=[[@{strength}[Base]] + [[?{SPECIAL Mod|0}[Mod]] - [[1d10[Roll]]]]}}"></button>&nbsp; <input type="number" class="sheet-number" name="attr_strength" value='@{strength_mod} + @{strength_base}' disabled="true"/>&nbsp; When the macro is displayed in chat, what should be the value of sum of strength_mod and strength_base is instead is instead the equation. Something like: Player(character_name) Strength(stat-name) [[0 + 8[Base]] + [[0[Mod]] - 2] My workaround from then on out was to just have those two attributes be summed up in the macro itself: &{template:special} {{char-name=@{character_name}}} {{stat-name=Strength}} {{stat-value=[[@{strength_mod} + @{strength_base}]]}} {{roll=[[1d10 - ?{SPECIAL Mod|0}]]}} It wasn't ideal, but it worked well enough as I was going through the rolls for the Stats. now that I've arrived at the Skill Checks, which by default look something like this: <button class="sheet-skill_button" type='roll' name="attr_roll-archery" value="&{template:default} {{name=@{character_name}}} {{Archery=[[[[@{archery}]] + [[?{Skill Mod|0}]] - [[1d100]] ]]}}" /></button> <!--- Few more lines of code ---!> <input type="number" class="sheet-number" name="attr_archery" value="(@{strength_base} + @{perception_base} + @{agility_base} + @{luck_base} + 20*@{tagskill31} + @{temp-archery} + @{mod-archery})" disabled="true"/> It's looking like I'm going to have to do the same thing again, but this time having the macro include all of the (@{strength_base} onward, and for all 30+ skills. All of that is to say, I am a novice in every respect, so I defer to all of you who know a great deal more than me in this. Is there a way to make the attribute, as in @{strength} reference the sum of the calculation in its value without the output in the chat being the equation itself?