D
DS
If two cases have the same code can you do this?
Select Case Me.TxtTest
Case 1 and Case 2
MsgBox "1 and 2"
Case 3
MsgBox "3"
Case 4
MsgBox "4"
Case Else
MsgBox "No Msg"
End Select
If not how doy you cut down on repeating code if you have this situation?
Thanks
DS
Select Case Me.TxtTest
Case 1 and Case 2
MsgBox "1 and 2"
Case 3
MsgBox "3"
Case 4
MsgBox "4"
Case Else
MsgBox "No Msg"
End Select
If not how doy you cut down on repeating code if you have this situation?
Thanks
DS