我正在尝试使用while循环设置简单的线性搜索。但是,由于某种原因,在行尾出现错误。
While (i < 32 And found = False)
SNAddress = "E" + (63 + i)
If Range(SNAddress).Value = DAInput Then
found = True
assignAddress = "G" + (63 + i)
statusLocation = "H" + (63 + i)
Else
i = i + 1
End If
End While
当我认为我同时拥有两者时,编译错误就是在等待一段语句或语句结束。