Le problème est que !=
ne fonctionne pas comme une fonction dans excel vba.
Je veux pouvoir utiliser
If strTest != "" Then
au lieu de If strTest = "" Then
Existe-t-il une autre approche pour faire cela, à part !=
?
Ma fonction d'imitation !=
est
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