D
desmondleow
I have the following If Else statement:
If CDbl(myString) <> "" Then
cells(n,9).Value = CDbl(myString)
End If
However, it doesn't work. MyString is declared as a String and it is
copying a field from another application. How can I check that
myString is empty/null?
If CDbl(myString) <> "" Then
cells(n,9).Value = CDbl(myString)
End If
However, it doesn't work. MyString is declared as a String and it is
copying a field from another application. How can I check that
myString is empty/null?