
I've added an "Active" checkbox to a repeating list of powers because many powers that impact stats are not always on & may take an action or a portion of movement, etc. to activate, have a power cost, turn off when the character is unconscious, etc., so it's useful to be able to toggle them off and cascade the stat update through the rest of the sheet. For this checkbox inside the repeater: < input type = 'checkbox' name = 'attr_power_active' title = 'power_active' checked /> ... I've updated a previously working RepeatingSum call to filter certain items using the checkbox, similar to what's shown in the conditional sums example at <a href="https://wiki.roll20.net/RepeatingSum" rel="nofollow">https://wiki.roll20.net/RepeatingSum</a>. on('change:repeating_powers remove:repeating_powers', function() { repeatingSum(["abilityip_total", "st_adj_total", "en_adj_total", "ag_adj_total", "in_adj_total", "cl_adj_total","init_adj_total", "pwr_adj_total", "hp_adj_total", "luck_adj_total", "ability_cp_total","atk_all_total","atk_1_total","atk_2_total","atk_3_total","atk_4_total","atk_5_total", "atk_6_total","atk_7_total","atk_8_total","atk_9_total"], "powers", [ "ip_cost", ["st_adj","power_active"], ["en_adj", "power_active"], ["ag_adj", "power_active"], ["in_adj", "power_active"], ["cl_adj", "power_active"], ["init_adj","power_active"], ["pwr_adj", "power_active"], ["hp_adj","power_active"], ["luck_adj","power_active"], "ability_cost", ["atk_all_adj","power_active"], ["atk_1_adj","power_active"], ["atk_2_adj","power_active"], ["atk_3_adj","power_active"], ["atk_4_adj","power_active"], ["atk_5_adj","power_active"], ["atk_6_adj","power_active"], ["atk_7_adj","power_active"], ["atk_8_adj","power_active"], ["atk_9_adj","power_active"] ]); }); Now however, the conditional items never update - i.e. the checkbox value appears to always be interpreted as zero. Any ideas what's going wrong? Full html is at <a href="https://github.com/drl2/roll20-character-sheets/blob/mighty_protectors/Villains%20and%20Vigilantes/VandVMightyProtectors.html" rel="nofollow">https://github.com/drl2/roll20-character-sheets/blob/mighty_protectors/Villains%20and%20Vigilantes/VandVMightyProtectors.html</a>