I cannot get the result of a repeatingSum to show. Don't know exactly where the problem resides. I've added the following sheet worker: on('change:repeating_perk remove:repeating_perk', function() { repeatingSum("perk_total","perk","perk_cost"); }); I have a repeating list <fieldset class="repeating_perk"> with <input type="number" name="attr_perk_cost" value="0" /> Here's the line of HTML where I want to display the summed result of all perk costs. <h2>Perks Spent: <span class="input-field-medium"style="width:80%;" name="attr_perk_total"></span></h2> What am I missing?