문제는 !=
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
!=
하지<>
않습니까?