Hi,
I need some help. I'm using Access 2010, and I am looking for vba code that will insert a date that is entered in a pop up form into a specific cell in a table in the db. Specifially, I would like to have the date inserted in the the field entitled "Accumulation Date" in the table, but in row 5. I tried the INSERT command but it appears I need to add more code to insert the date into that specific cell. Can someone please help me with this?
CurrentDb.Execute "INSERT INTO WasteListT(AccumStartDate) VALUES (" & Me.AccumStartDate & ")"
I need some help. I'm using Access 2010, and I am looking for vba code that will insert a date that is entered in a pop up form into a specific cell in a table in the db. Specifially, I would like to have the date inserted in the the field entitled "Accumulation Date" in the table, but in row 5. I tried the INSERT command but it appears I need to add more code to insert the date into that specific cell. Can someone please help me with this?

CurrentDb.Execute "INSERT INTO WasteListT(AccumStartDate) VALUES (" & Me.AccumStartDate & ")"