J
Jay Kay
I need to force the users entering data on a form to enter data in all the
fields. I can’t set the fields to be required at the table level because I’m
appending records into the table on a daily basis (import from excel) with
most of the fields missing.
Is it possible to set the fields to be required in the form without having
to code anything, but use the properties of each field? (I don’t have the
knowledge to write any code).
I tried using the Validation Rule on each control but I’m not doing it
correctly since I can save each record with any/all of the required fields
being blank.
Here are a couple of examples
text box =len([lastname]&"")>0
combo box =[category]>0
Should I be checking for the expression to be true or false? For example,
for the category not be be blank, do I check that it's not 0 or that it is 0?
Can someone help explain the syntax I’m supposed to be using and provide an
example for a date and memo field too please?
Thanks in advance for your assistance.
fields. I can’t set the fields to be required at the table level because I’m
appending records into the table on a daily basis (import from excel) with
most of the fields missing.
Is it possible to set the fields to be required in the form without having
to code anything, but use the properties of each field? (I don’t have the
knowledge to write any code).
I tried using the Validation Rule on each control but I’m not doing it
correctly since I can save each record with any/all of the required fields
being blank.
Here are a couple of examples
text box =len([lastname]&"")>0
combo box =[category]>0
Should I be checking for the expression to be true or false? For example,
for the category not be be blank, do I check that it's not 0 or that it is 0?
Can someone help explain the syntax I’m supposed to be using and provide an
example for a date and memo field too please?
Thanks in advance for your assistance.