It is possible, but you have to use getSectionIDs. This is a function that grabs an array of all the row ids in the section, and you then use it to iterate through the section and change the attribute on every row. If you just want to clear all checkboxes, and dont care what values the attribute had before, this is very easy. on ( 'clicked:clearload' , function () { getSectionIDs ( 'repeating_gear' , function ( id_array ) { const output = {}; id_array . forEach ( id => { output [ `repeating_gear_ ${ id } _equip` ] = 0 ; }); setAttrs ( output ); }); }); so the getSectionIDs at the start creates an array containing all the rows IDs (and it can be empty if there are no rows created yet). the forEach function works its way through that array, and creates a full name including the row id. In this string, `repeating_gear_${id}_equip` when you use backticks (` `) you can include variables and other code inside ${ }, so this includes the variable for the row id. It creates an attribute with the proper name, and sets its value to zero, stored in the object called output . Then you just run setAttrs with output to save the values to the sheet.