What I want to do is populate a form with the data of one table through the use of a combobox and after doing so be able to click a command button that would add that data to a record in another table. Any Ideas?
Use the combo on the form as a selector to identify the record you want, once you have the correct record use a Save button with code to open the second table and write the form detail to the table.
In cmdSave_Click()
Dim rst as recordset
Set rst = CurrentDb.OpenRecordset("TableNum2"
rst.AddNew
rst!Field1 = Me!Field1
rst!Field2 = Me!Field2
etc..
etc..
rst.Update
rst.Close
Set rst = Nothing
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.