I am trying to set the default value of an input field to the value of another input field. So far the only way this has worked for me is if the field is disabled. Am I doing something wrong or does Roll20 just not do what I want? Code presented below for clarification: <span class="sheet-table-data-left"><input title="DEX-bonus" type="number" name="attr_DEX-bonus" value="0"></span>
<span class="sheet-table-data-center"><input title="Acrobatics" type="number" name="attr_Acrobatics-npc" value="@{DEX-bonus}"></span> I have left out the code I think is inconsequential to this discussion. In the case presented above, the value of @{DEX-bonus} does not transfer to @{Acrobatics-npc} and is not displayed on the sheet. The idea here is that the default bonus for skills should be the bonus of a related ability, but if other bonus apply, then the skill bonus can be changed to be the total bonus. TIA for any help