It shouldn't, how did you populate the combobox?
Are you entering the value(s) manually or by selection via the dropdown?
Are there any trailing/leading spaces in the range E1:E3000?
Private Sub ComboBox9_Exit(ByVal Cancel As MSForms.ReturnBoolean)
Dim idx As Long
idx = ComboBox9.ListIndex
If idx = -1 Then
MsgBox "Invalid seal number selected/entered"
Cancel = True
End If
Cells(1, 8).Value = ComboBox9.Value
End Sub