This does not have to do with a required field. It has to do with a relationship between that table and the items table. Go into tools/relationships and you should be able to see how your table is related to items. My guess is that you have a foreign key 1:M relationship.
This message is saying that there are two tables that have a relationship and the referential integrety is enforced. For instance if you have the following two tables:
tblParts
PartNo
Description
Cost
QtyOnHand
tblOrderLines
OrderNo
PartNo
Price
QtyOrdered
If the two part number fields have been related and the box checked to enforce referential integrety then you won't be able to a part number to tblOrderLines unless it already exists in tblParts. If you try, you will get the message you posted.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.