I have been searching through this forum for hours and I can't find anything that will help me.
I have a query "qclerking" that is based on a table called "tblbiddersales ", this is then popluated by entering information in a form called "frmbiddersales ". There are several fields that information is entered into, but I have a field that populates itself called "ID". It populates from the "qclerking" query. I would like a field called "ID" to then be populated in the "tblbiddersales " after information is entered in the form.
I have tried to enter the following code in the "After Update" property, but it just populates the field with a "0".
Any help will be appreciated. If you need any other information, let me know.
Thanks!
I have a query "qclerking" that is based on a table called "tblbiddersales ", this is then popluated by entering information in a form called "frmbiddersales ". There are several fields that information is entered into, but I have a field that populates itself called "ID". It populates from the "qclerking" query. I would like a field called "ID" to then be populated in the "tblbiddersales " after information is entered in the form.
I have tried to enter the following code in the "After Update" property, but it just populates the field with a "0".
Code:
Private Sub Text20_AfterUpdate() Me.tblbiddersales = Me.txt20 End Sub
Thanks!
Comment