Hi
I would like to know how to populate a table field with unbound data from a form.
Thank you
David

Hi
I would like to know how to populate a table field with unbound data from a form.
Thank you
David
What have you tried?
Readers need more info re your situation. Why not use bound form?
one has no choice but to write into the table via an append query or update query....
Thanks
I fixed this using
With rst
.AddNew
!ProductId = Me!TxtID
!ProductDescription = Me!TxtProductDescription
!TransDate = Me!TransDate
!InorOut = Me!Frame27
!Quantity = Me!txtQuantity
!UnitCost = Me!UnitCost
!GST = Me!GST
!TotalCost = Me!TotalCost
.Update
End With
rst.Close
Copy data from unbound textbox to a record in a table
Simply Cannot Get Code to Work. Add Form Data to Table. Unbound Boxes.
When to Bind data in Form Event Lifecycle
Bind text boxes to data in different records on one form