Hello i what to compare 2 list box and msg the user that item that are not in the 2 listbox this is what i have up to now but i am stuck
any idea ?

thank's

For i = 0 To List1.ListCount - 1
For X = 0 To List2.ListCount
If List1.List(i) = List2.List(X) Then
Else
MsgBox List1.List(i)
End If
Next X
Next i