Hi there, Let me explain what I'm try to achieve. Let's say I have this repeating section. <fieldset class="repeating_sac"> <select name="attr_contenu"> <option value="">-- Objets disponibles --</option> <option value="Marteau">Marteau</option> <option value="Epée">Epée</option> <option value="Arc long">Arc long</option> <option value="Bile de dragon">Bile de dragon</option> <option value="Carquois">Carquois</option> <option value="Torche">Torche</option> </select> <input type="text" name="attr_description" value="@{description}" readonly /> </fieldset> Somewhere inside my worker, I have these datas : const stuffData = { "Marteau": { "type" : "arme", "description" : "Arme de mêlée" }, "Epée" : { "type" : "arme", "description" : "Arme de mêlée" }, "Arc long" : { "type" : "arme", "description" : "Arme à distance" }, "Bile de dragon" : { "type" : "divers", "description" : "Permet d'enflammer" }, "Carquois" : { "type" : "divers", "description" : "relance les dés" }, "Torche" : { "type" : "divers", "description" : "Permet de prendre 2 cartes en fouilles ou enflamer une bile" } } I would like to update the description part of the repeating section (the "text input" tag) with the description contained in my datas. My entry point would probably be this on("change:repeating_sac remove:repeating_sac sheet:opened", () => { getSectionIDs("repeating_sac", (idarray) => { getAttrs(idarray.map((id) => `repeating_sac_${id}_contenu`), (values) => { ..... }); }); }); but I'm in a black hole concerning the dots ..... Is it doable ? If yes, how ?