I keep getting an error message in a subform that the data is stored into a junction table. Here is the error message, and I will explain further below:
This error comes about when adding a new record to the junction table in the subform. The subform is in datasheet mode and the user inputs a few fairly simple fields, basically the date, routing info (i.e., Received, Sent, Emailed), routing where (i.e., to SR, from SR, to PR, from PR, etc.) and the person routing it (which is a combobox for whoAdded).
So it basically seems that the inputs will not allow a null value in the whoAdded field (and a few others). If the user clicks off of that record (that particular line in the datasheet mode) without having selected their name from the combobox, it triggers the above error message.
So why is it forcing me to make selection? I understand the query not finding a NULL in the table, but I can't seem to ever remember that dissallowing a NULL before.
As always, any help/wisdom is most appreciated!
Contacts is my list of, well, Contacts and whoAdded is an expression in a query contained within the form that concatenates the first and last names.The Microsoft Office Access database engine cannot find a record in the table 'Contacts' with key matching field(s) 'whoAdded'.
This error comes about when adding a new record to the junction table in the subform. The subform is in datasheet mode and the user inputs a few fairly simple fields, basically the date, routing info (i.e., Received, Sent, Emailed), routing where (i.e., to SR, from SR, to PR, from PR, etc.) and the person routing it (which is a combobox for whoAdded).
So it basically seems that the inputs will not allow a null value in the whoAdded field (and a few others). If the user clicks off of that record (that particular line in the datasheet mode) without having selected their name from the combobox, it triggers the above error message.
So why is it forcing me to make selection? I understand the query not finding a NULL in the table, but I can't seem to ever remember that dissallowing a NULL before.
As always, any help/wisdom is most appreciated!