hondaman2003
Programmer
I need to use a select case to check for not only multiple values but one option is that the text box is blank.
Select case txtTextBox
case "value1", "value2", "value3", null
msgbox "worked"
case else
msgbox "did not work"
end select
How can I make this work?
Select case txtTextBox
case "value1", "value2", "value3", null
msgbox "worked"
case else
msgbox "did not work"
end select
How can I make this work?