问题是它!=
在 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