Ok, sorry for possible wall of text and hope this is the right place to ask this question (new here), but I am working on a custom sheet for a custom game and I am trying to accomplish the following: My sheets have a long list of skills and stats and classes, so I am implementing them on the sheet like this: <tr><td><b>INTELLIGENCE</b></td><td><input type ="number" name="attr_Int" /></td><td><input type="checkbox" name="attr_hasInt" value="@{Int}"></td></tr> <tr><td>Aero Tech (+30)</td><td><input type="number" name="attr_aero"></td><td><input type="checkbox" name="attr_hasaero" value="@{aero}"></td></tr> <tr><td>Accounting (+20)</td><td><input type="number" name="attr_acc"></td><td><input type="checkbox" name="attr_hasacc" value="@{acc}"></td></tr> <tr><td>Anthropology (+30)</td><td><input type="number" name="attr_ant"></td><td><input type="checkbox"name="attr_hasant" value="@{ant}"></td></tr> Now, I want the roll button to ONLY accept the skills that are checked via the check boxes to roll i.e.: Int has a value of 20, Aero Tech has a value of 30, Accounting has a value of 15 and Anthropology has a value of 10, but only Int and Aero have been checked, and I only want those 2 skills to roll: <button type='roll' value='/roll 1d20! + @{Int} + @{aero} + @{acc} + @{ant}' name='roll_Check'></button>