I am trying to update a table called employees.
The field I am trying to update in the table is called Notes.
It get's the information from a text box on the form called
Me.[Notes]
Here is my code:
DoCmd.RunSQL "UPDATE Employees SET [" & Notes & "] = Me.[Notes];"
And idea's on how to get it running?
The field I am trying to update in the table is called Notes.
It get's the information from a text box on the form called
Me.[Notes]
Here is my code:
DoCmd.RunSQL "UPDATE Employees SET [" & Notes & "] = Me.[Notes];"
And idea's on how to get it running?