D
DS
Is it possible to have an if statement in a case, and if a condition is meet
then it runs the suggested case?
Thanks
DS
Select Case
Case 1
'Do Whatever
Case 2
'Do Whatever
Case 3
If Me.Text1 =1 Then
Run Case 1
Else
'Do Whatever
End If
End Select
then it runs the suggested case?
Thanks
DS
Select Case
Case 1
'Do Whatever
Case 2
'Do Whatever
Case 3
If Me.Text1 =1 Then
Run Case 1
Else
'Do Whatever
End If
End Select