I'm not sure if this is possible - which is why I'm here - but I'd like to be able to have controls on the same form (or form and subform) save to two separate tables.
What I'm specifically trying to do is have data entered by an operator and then have access indicate whether that reading is in compliance by filling in a text box with an OutofRange or InRange. The data would go to one table and the compliance data to another. I'm want to use the record ID to link between the two. I have relationships set up, but I'm experiencing trouble getting the compliance data to save the record ID when I press the form complete button.
The form is set up with the data fields on a main form and the compliance fields on a subform. The issue seems to be with the ID number and I just realized as I'm typing this that it may have something to do with the fact I'm on a SQL server backend. The ID shows up in the main form, but doesn't always show in the subform and when I press the complete button, which runs Application.RunCommand acCmdSaveRecord and is located on the main form, I get the compliance data saved, but no ID number. Without that ID number I won't be able to link the records later during our data out phase.
Any ideas?
DD