I'm having trouble getting the syntax correct on a sql statement that uses information from two text boxes on my form. Here is what I'm trying:
DoCmd.RunSQL "UPDATE [FS Specialists], SET [FS Specialists]! = '" & Trim(Me!txtemail) & "' WHERE [FS Specialists]![FS Specialist] = '" & Trim(Me!txtfsspecialist) & "';"
Anything obvious?
Thanks!
DoCmd.RunSQL "UPDATE [FS Specialists], SET [FS Specialists]! = '" & Trim(Me!txtemail) & "' WHERE [FS Specialists]![FS Specialist] = '" & Trim(Me!txtfsspecialist) & "';"
Anything obvious?
Thanks!