在一个IF语句Excel VBA中放置多个标准

时间:2016-04-13 00:19:35

标签: excel vba excel-vba

如何在Excel VBA中的一个If语句中使用多个AND / OR条件 没有伸展一条线? 每当我向新行输入额外标准时,编译 错误出现了。

enter image description here

1 个答案:

答案 0 :(得分:0)

您的If语句需要在一行中,或者如果您希望它超过两行,请使用下划线。

If i.Value = "Device Name" _
Or Left(i.Value, 11) = "Average for" Then
    i.EntireRow.Delete
End If