Hello I am a newbie, and I would like to submit a community sheet for the "Dungeon Slayers 4" RPG. My question is the following : Can we have a field that is auto calculated, but that the player can manually edit afterwards ? Example : Given : <label>Mind</label><input type="number" name="attr_MND" /> <label>Intellect</label><input type="number" name="attr_IN" /> <label>Aura</label><input type="number" name="attr_AU" /> Does : <label>Targeted Spellcasting</label><input type="number" name="attr_TSC" value="@{MND}+@{DX}" /> will provide an autocalculated fields that the player can later update or do I must enter : <label>Targeted Spellcasting</label><input type="number" name="attr_TSC" value="@{MND}+@{DX}" disabled="true" /> Thanks in advance for your kind answer.