在vb中使用“OR”时,IF条件是否有任何限制?

时间:2012-02-06 13:04:06

标签: vba vb6 vbscript

在我的代码中我想使用if条件。我想在其中使用“OR”约18次。 比如说。

If a="something" or a="something" or a="something" or.........(up to 18 times)... then
  'do nothing
else
  'do action
end if

[注意: a 的值每次都在 For循环中发生变化] 所以我只是想问一下在限定时间使用OR有没有限制。 或者还有其他更好的方法来做同样的事情。

谢谢

2 个答案:

答案 0 :(得分:14)

据我所知,以这种方式使用OR没有任何限制。

然而,您可以考虑使用其他方法对此进行编码。

使用Not

否定条件

首先,如果您在第一种情况下do nothing,请考虑使用Not声明

If Not True Then
'do somethin
'no else
End If

考虑使用Select Case

其次,如果你要检查相同的变量,你可以考虑使用Select Case ,但如果你只有一个案例,那么你的情况似乎不合适。< / p>

尝试使用搜索

最后,如果您要检查字符串,最好使用在数组中搜索(如果您在Excel或.Contains内使用Application.Match)或使用Instr

中的字符串

使用集合或词典

[编辑]另一种处理此问题的好方法是使用 Dictionary Structure VBA 并检查a是否存在(有关某些内容,请参阅MSDN信息)。

答案 1 :(得分:6)

这个答案只是对我对JMay的评论的详细说明,完全归功于他。我认为原始海报意味着他的问题中的“Something”不同,a是循环变量。

For each a in MyList

   Select Case a
   Case "something", "something2", "something3", "something4", "something5", _
        "something6", "something7", "something8", "something9", "something10", _
        "something11", "something12", "something13", "something14", "something15", _
        "something16", "something17", "something18"

       'DO NOTHING

   Case Else

       'do-something code goes here
       ' and here
       ' and here
       ' and here
   End Select

Next a