Je suis vraiment novice en la matière alors je vous joins le code de ma listeboxe
Private Sub CommandButton1_Click()
Dim element_select As Boolean
Dim nb_elements
Dim i As Integer, j As Integer
Dim nb_elements_selectionnés As Integer
'Nombre d'élément dans listbox1
nb_elements = UserForm1.ListBox1.ListCount
For i = 0 To nb_elements - 1
If UserForm1.ListBox1.Selected(i) = True Then
For j = 27 To 158
If j >= 27 And j <= 78 Or j >= 113 And j <= 158 Then
If Trim(Cells(j, 1).Value) = "" Then
Cells(j, 1).Value = UserForm1.ListBox1.List(i)
Exit For
End If
End If
Next j
End If
Next i
End Sub
Private Sub CommandButton2_Click()
Unload Me
End Sub
Private Sub ListBox1_Click()
Sub bonjour_toi()
UserForm1.Show
End Sub