I have setup a validation rule of Not "" but it still allows the form to be
saved even though the field has been left empty??
Any Suggestions?
Many Thanks
S
Set the field's Required property to true instead.
"" is a String value, a zero length string.
NULL is a *different* value, or better non-value. A field that is NULL
is undefined, empty, unspecified; "" is defined, non-empty, specified
- you know exactly what it is, it's a zero length string.
Setting a field as Required in a table will prohibit saving a record
where that field is NULL. Note that if you also set the Allow Zero
Length String property to Yes (it's No by default), you can have "" as
a valid, non-NULL value; this combination should be used with great
caution and only when needed, since it's very hard to tell a NULL from
a zero-length string!
John W. Vinson[MVP]