JockVSJock
Technical User
Created a form and I don't understand how to do the following.
I have a form that has 10 fields and if they DO NOT enter in a number or don't enter anything, it is ignored.
How do I write this in code? I don't want an error messasge either, just ignore blanks and non-numeric entries...See my code below...
If Not IsNumeric(txt1.Text) Or txt1.Text <> "" Then
'what do I put here?
else if
If Not IsNumeric(txt2.Text) Or txt2.Text <> "" Then
'what do I put here?
else if
If Not IsNumeric(txt3.Text) Or txt3.Text_
<> "" Then
Get what I am trying to do?
thanks