Hello all!
I need help on a form I have that is generated by a query.
what I need to happen is on the form is a Last_User field and I want this duplicated to another table on the event of changing of information on the record. The two tables are Main and tblUserChange. Is there a way to do this?
I tried this:
CurrentDb.Execute "INSERT INTO tblUserChange ([Last_User]) VALUES (" & [Last_User] & ")"
but I can't seem to get that to work.
I also tried the ME! command but I am not 100% sure on how to use that feature to do what I want to do.
Any ideas?
Thanks.
I need help on a form I have that is generated by a query.
what I need to happen is on the form is a Last_User field and I want this duplicated to another table on the event of changing of information on the record. The two tables are Main and tblUserChange. Is there a way to do this?
I tried this:
CurrentDb.Execute "INSERT INTO tblUserChange ([Last_User]) VALUES (" & [Last_User] & ")"
but I can't seem to get that to work.
I also tried the ME! command but I am not 100% sure on how to use that feature to do what I want to do.
Any ideas?
Thanks.