if statement dealing with numberical numbers and text
Hi, all:
I have the folloiwng code. If cell A1 is a numberical number 0, then
a value 1 will be returned in cell B1. However, if I enter a text
string into cell A1, it will still return a number 1 in cell B1. How
to list them as two different cases, i.e. return a different value in
cell B1 if cell A1 is text string? I appreciate your help! Thank you
so much!
Sub ReturnDifferentNumber()
Range("B1") = 0
If Range("A1").Value 0 Then
Range("B1").Value = 1
End If
End Sub
|