与Excel中的VBA的数组项和字符串的字符串比较

时间:2012-08-17 18:11:02

标签: excel vba excel-vba

这可能很简单,但我似乎无法找出错误:

if temp_array(1) = temp_string2 & temp_array(2) = "w" then
....
end if

值为:

temp_array(1)=“test1”

temp_string2 =“test2”

temp_array(2)=“w”

我收到类型不匹配错误,突出显示条件比较...

1 个答案:

答案 0 :(得分:3)

&是字符串连接,不是逻辑and

if temp_array(1) = temp_string2 And temp_array(2) = "w" then