Private Sub CommandButton3_Click()
For i = 1 To 5
If Controls("CheckBox" & i) = True Then Chaine = Chaine & Controls("CheckBox" & i).Caption & ","
Next i
If Right(Chaine, 1) = "," Then Chaine = Mid(Chaine, 1, Len(Chaine) - 1)
ActiveCell = Chaine
Unload Me
End Sub
Private Sub CommandButton4_Click()
Unload Me
End Sub