Dim i As Integer
Dim ListCount1 As Integer
ListCount1 = ListBox2.ListCount - 1
If Trim(UCase(N_Mag)) <> "" Then
For i = ListCount1 To 0 Step -1
If UCase(Trim(ListBox2.List(i, 2))) <> UCase(Trim(N_Mag)) Or _
UCase(Trim(ListBox2.List(i, 1))) <> UCase(Trim(Cmb_Suite.value)) Then
ListBox2.RemoveItem (i)
End If
Next i
End If