Hi there, I've been doing character sheets for a while, but this one has me stumped.... I have a repeating group which has an attribute set from other attributes in the value field (see code below)... In my sheetworker, if I try and get this value it just returns me the formula string... <fieldset class="repeating_athleticsspec"> <div class="sheet-laf-centredgrid sheet-laf-4colrow1311"> <button name="roll_Athleticsspec" type="roll" value="@{whispertoggle}&{template:skill-general-alt} {{skill=^{athletics-u}}} {{spec=: @{skillSpeciality-Athleticsspec} }} {{character= @{character_name} }} @{ro_default_rolltype} + [[@{skilltotal-Athleticsspec}]] @{ro_default_mod}]] }} "> <div class="sheet-button_header_rep">b</div></button> <input type="text" class="sheet-input" name="attr_skillSpeciality-Athleticsspec" placeholder="Specialty Name"/> <input type="number" class="sheet-input" name="attr_skilllevel-Athleticsspec" value="0"/> <input type="number" class="sheet-input" name="attr_skilltotal-Athleticsspec" value="@{skillCharacteristicDM-Athletics} + @{skilllevel-Athleticsspec} + @{skilllevel-Athletics} + @{skillmodifier-Athletics}" disabled/> </div> </fieldset> You can see that attr_skilltotal-Athleticsspec is the field with a formula in it, and as mentioned, doing a getAttrs just returns the formula string... I tried adding a hidden field like: <input type="hidden" name="skilltotalconst-Athleticsspec" value="@{skilltotal-Athleticsspec}"> But this never gets a value so I guess it can't be used in this way... Is there any way to get the resolved value of attr_skilltotal-Athleticsspec? Obviously I can re-do the calc myself in the sheetworker but it's a bit of a pain :-)) Any help very gratefully received, ~ Coryphon ~ PS I'm aware of case-sensitivitiy and that the variables have to be lower-cased within the getAttrs array of things to return!