D
DS
Can this be done?
If CDSub = 2 or 3 Then
MsgBox "OK"
Else if CDSub = 4 Then
MsgBox "Maybe"
Elseif CDSub = 5 Then
MsgBox "NO"
End If
Of course the if statement is more complex but the point I'm gong after
is that I need to combine the 2 and 3 conditions together.
Thanks
DS
If CDSub = 2 or 3 Then
MsgBox "OK"
Else if CDSub = 4 Then
MsgBox "Maybe"
Elseif CDSub = 5 Then
MsgBox "NO"
End If
Of course the if statement is more complex but the point I'm gong after
is that I need to combine the 2 and 3 conditions together.
Thanks
DS