No selection made for combo box

D

Douglas J. Steele

I think you mean

If IsNull(Me.YourComboBoxName) Then
'Nothing selected by the user
Else
'Your have a value to work with
End if


You cannot use = to check for Null.
 
Top