Hi, I have a bug with the javascript of my sheet that I'm trying to update. I want to transfer data from an old system to a new one. This is a "repeating_" section. When I use my sheetworker, it is well copied, except that it is copied twice. getSectionIDs("repeating_slotsTete", function(idarray) { _.each(idarray, function(currentID, i) { getAttrs( [ 'repeating_slotsTete_' + currentID + '_slotsUTete', 'repeating_slotsTete_' + currentID + '_slotsNTete', 'repeating_slotsTete_' + currentID + '_slotsATete', 'repeating_slotsTete_' + currentID + '_slotsETete', 'repeating_slotsTete_' + currentID + '_slotsDureeTete', 'repeating_slotsTete_' + currentID + '_slotsDTete' ], function(v) { var u = v['repeating_slotsTete_' + currentID + '_slotsUTete']; var n = v['repeating_slotsTete_' + currentID + '_slotsNTete']; var a = v['repeating_slotsTete_' + currentID + '_slotsATete']; var e = v['repeating_slotsTete_' + currentID + '_slotsETete']; var duree = v['repeating_slotsTete_' + currentID + '_slotsDureeTete']; var d = v['repeating_slotsTete_' + currentID + '_slotsDTete']; var newrowid = generateRowID(); var newrowattrs = {}; newrowattrs["repeating_modules_" + newrowid + "_moduleSlotTete"] = u; newrowattrs["repeating_modules_" + newrowid + "_moduleNom"] = n; newrowattrs["repeating_modules_" + newrowid + "_moduleActivation"] = a; newrowattrs["repeating_modules_" + newrowid + "_moduleEnergie"] = e; newrowattrs["repeating_modules_" + newrowid + "_moduleDuree"] = duree; newrowattrs["repeating_modules_" + newrowid + "_moduleDescription"] = d; setAttrs(newrowattrs); }); }); }); Thank you in advance for your help.