问题是!=
不能在excel vba中作为功能使用。
我想能够使用
If strTest != "" Then
代替 If strTest = "" Then
除此以外,还有其他方法!=
吗?
我模仿的功能!=
是
Sub test()
Dim intTest As Integer
Dim strTest As String
intTest = 5
strTest = CStr(intTest) ' convert
Range("A" + strTest) = "5"
For i = 1 To 10
Cells(i, 1) = i
If strTest = "" Then
Cells(i, 1) = i
End If
Next i
End Sub
你的问题是什么?为什么
—
Gserg
!=
在vba中不起作用,或者vba中的不等式运算符是什么?
!=
不<>
?