最佳答案
问题是 !=
不能作为 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