Problem polega na tym, !=
że nie działa jako funkcja w programie Excel VBA.
Chcę móc korzystać
If strTest != "" Then
zamiast If strTest = "" Then
Czy istnieje inne podejście do zrobienia tego poza !=
?
Moją funkcją naśladowania !=
jest
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
!=
i nie<>
?