I have a drop down menu box with several options. For some of the options, they have specific activities to do so I listed those in my code specifically. However, for the other options, which are 12, there is only one thing for all of these to do. In my code I put:
If OperationName.value <> Null Then
I also put
If OperationName.value = "*" Then
and
If OperationName.value = <> Null Then
It will not execute either way I try to use a wildcard. Is there other options I am not aware of that I could use that will execute the command when one of the other 12 options are selected?
Thanks in advance!!
If OperationName.value <> Null Then
I also put
If OperationName.value = "*" Then
and
If OperationName.value = <> Null Then
It will not execute either way I try to use a wildcard. Is there other options I am not aware of that I could use that will execute the command when one of the other 12 options are selected?
Thanks in advance!!