bonjour
mon idée est de mettre en forme un code comme suit:
Si checkbox = false alors supprime
j'utilise actuellement ce code pour supprimer toutes les cases a cocher d'une feuille.
Sub EffaceMentShapeChamp()
For Each s In ActiveSheet.Shapes
If Not Intersect(s.TopLeftCell, Range("$r$32:$ab$46")) Is Nothing Then
s.Delete
End If
Next s
End Sub
Edit Modo : mis code entre balises.