V
v.maggs
I am curious to know which IF statement below is better. strQCType
could be "LCS", "MS", "REG", "LD", or "LB". I want the code within the
IF statements to execute only in the event of an "LCS" or "MS".
If ((strQCType = "LCS") Or (strQCType = "MS")) Then
End If
-OR-
If (strQCType = "LCS") Or (strQCType = "MS") Then
End If
Thanks,
Vint
could be "LCS", "MS", "REG", "LD", or "LB". I want the code within the
IF statements to execute only in the event of an "LCS" or "MS".
If ((strQCType = "LCS") Or (strQCType = "MS")) Then
End If
-OR-
If (strQCType = "LCS") Or (strQCType = "MS") Then
End If
Thanks,
Vint