On a multipage userform, I would like to verify that a selection has been made in a listbox when the form is advanced to the next page.
If ListBox.Value = Null Then
Statement1
End If
When reaching this statement during debugging, ListBox.Value is shown = Null, but the statement isn't evaluated as true, and Statement1 is not executed. Is Null not a valid condition to test against in an If statement?
If ListBox.Value = Null Then
Statement1
End If
When reaching this statement during debugging, ListBox.Value is shown = Null, but the statement isn't evaluated as true, and Statement1 is not executed. Is Null not a valid condition to test against in an If statement?