P
Paterson10987
I have several unbound controls that are filled out and then use a command
button to store those values in my table. I want to make sure that most of
them are not blank, but everything I'm trying is failing.
I tried:
If [cboArea] = "" then
MsgBox "Area is Empty"
Exit Sub
End If
And:
If Len(Nz([cboArea], "") > 0) Then
...
The Len function always returns true even when I change the value. Neither
work even when I change to [cboArea].Value or try similarly with a text box.
Any Ideas?
button to store those values in my table. I want to make sure that most of
them are not blank, but everything I'm trying is failing.
I tried:
If [cboArea] = "" then
MsgBox "Area is Empty"
Exit Sub
End If
And:
If Len(Nz([cboArea], "") > 0) Then
...
The Len function always returns true even when I change the value. Neither
work even when I change to [cboArea].Value or try similarly with a text box.
Any Ideas?