gpt4 book ai didi

excel - Excel VBA 中的 "!="相当于什么?

转载 作者:行者123 更新时间:2023-12-01 16:16:51 25 4
gpt4 key购买 nike

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

最佳答案

因为VBA中的不等运算符是<>

If strTest <> "" Then
.....

运算符(operator)!=用于C#、C++。

关于excel - Excel VBA 中的 "!="相当于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11595757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com