Private Sub SetComboBox()
Dim Arr, i, f
Set f = Sheets("Locataires")
Arr = f.Range("A5:S" & f.[A65000].End(xlUp).Row).Value
Me.ComboBox1.ColumnCount = 2
Me.ComboBox1.ColumnWidths = "90;50"
For i = 1 To UBound(Arr)
If Arr(i, 19) <> "" Then
ComboBox1.AddItem Arr(i, 1)
ComboBox1.List(ComboBox1.ListCount - 1, 1) = Arr(i, 2)
End If
Next i
End Sub