Private Sub CommandButton1_Click()
Dim L As Integer, i As Byte
Dim Ref As String, Libel As String, chariot As String
'ici je repère la dernière ligne vide pour coller les données
L = Sheets("Feuil1").Range("A65536").End(xlUp).Row + 1
'Ici c'est le report de la saisie dans la feuille
For i = 1 To 3
chariot = IIf(i = 1, "", Chr(10))
If Controls("ComboBox" & i).Value <> "" Then Ref = Ref & chariot & Controls("ComboBox" & i).Value
If Controls("Label" & i).Caption <> "" Then Libel = Libel & chariot & Controls("Label" & i).Caption
Next
With Sheets("Feuil1")
.Range("A" & L) = Ref
.Range("B" & L) = Libel
End With
Unload Me
End Sub