Hi, sorry guys for meddling, if I got it right you want to check checkbox if values are not empty in one of 3 dropdown fields
and to be unchecked if no items are selected in dropdowns?
If thats all you want, add empty value to each dropdown and give it export value of 0,
then you can use this code as custom calculation script of one of dropdown fields or another hidden text field:
if(this.getField("Decoupe").value != 0){
this.getField("Dessin").checkThisBox(0, true);}
else if(this.getField("Assemblagedessus").value != 0){
this.getField("Dessin").checkThisBox(0, true);}
else if(this.getField("Assemblagepattes").value != 0){
this.getField("Dessin").checkThisBox(0, true);}
else this.getField("Dessin").checkThisBox(0, false);