I am working on a form and am getting the following error.
Syntax error (missing operator) in query expression '55WHERE
tblWorker.WorkerID=20090007'
Here is the code that I have taken and reworked based on information from the forum.
sSql = "UPDATE tblWorker " & _
"SET tblWorker.LocationID = " & Me.cboLocationComboBox & _
"WHERE tblWorker.WorkerID= " & Me.cboWorkerComboBox & ";"
DoCmd.RunSQL sSql
Thanks for your assistance!
Syntax error (missing operator) in query expression '55WHERE
tblWorker.WorkerID=20090007'
Here is the code that I have taken and reworked based on information from the forum.
sSql = "UPDATE tblWorker " & _
"SET tblWorker.LocationID = " & Me.cboLocationComboBox & _
"WHERE tblWorker.WorkerID= " & Me.cboWorkerComboBox & ";"
DoCmd.RunSQL sSql
Thanks for your assistance!