Hi! I am having trouble getting a value to calculate correctly within an <input> on a custom character sheet. What is frustrating is that I wrote the code, tested it twice and it worked. When I went back to the code to copy and paste it into other areas, it is no longer working. Below is a pic I get in the roll20 game as well as the code below. The value in question is in bold. Any help is greatly appreciated! <div class="Acro"> <label class="Acrobatics">Acrobatics <button type="roll" value="/em tests his ``Acrobatics!`` [[1d20cs>@{Acrobatics_max}+@{Acrobatics}]]" name="roll_Acrobatics"></button> <input type="number" name="attr_AcroMod" value="floor(@{Finesse}/2)" disabled="true"/> <input type="number" name="attr_AcroProf" value="floor(@{AcroSuccess}/3)" disabled="true"/> <input type="number" name="attr_AcroMisc" value="0"><input type="number" name="attr_AcroSuccess" value="0"/> <input type="number" name="attr_Acrobatics" value="@{AcroMod}+@{AcroProf}+@{AcroMisc}" disabled="true"/> <input hidden type="number" name="attr_Acrobatics_max" value="((15+@{AcroMod})-(@{Acrobatics}))" disabled="true"/> </label> </div>