ปัญหาคือ!=
ไม่ทำงานเป็นฟังก์ชันใน 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
!=
และไม่ได้<>
?