No selection made for combo box

  • Thread starter Thread starter Goldar
  • Start date Start date
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.
 
Back
Top