Right On
Casey,
Your suggestions worked great! I have one item however, that is not working out. My form that is bound to the invoice table has two fields that are unbound. (Total and Invoice_no) Each item on the invoice form gets written to the invoice table. I need to get the Invoice_no field and Total field to write to the invoice table for each item number. I have used your suggestions to get the subforms to write but, the unbound fields want to write a new record without the item number. I used the following to try to write unbound fields to the invoice table:
Dim Db As DAO.Database
Dim rs As DAO.Recordset
Set Db = CurrentDb
Set rs = Db.OpenRecordset("Invoice")
rs.AddNew
rs("Total").Value = me.Total
rs("Invoice_no").Value = me.Invoice_no
rs.update
set db = nothing
set rs = nothing
Thanks!