問題は、!=
excelvbaの関数として機能しないことです。
使えるようになりたい
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