Option Explicit
Const Wahou = 69
Sub ImgVisible()
Dim i As Integer, y As Integer
With Sheets("Feuil1")
For i = 1 To 3
For y = Wahou + i To 72
If .Shapes("Checkbox" & y).DrawingObject.Value = 1 Then
.Shapes("Canon" & i).Visible = True
Else
.Shapes("Canon" & i).Visible = False
End If
Next y
Next i
End With
End Sub