Microsoft JET Database Engine (0×80040e14) Syntax Error (Missing Operator) in query expression
This is commonly caused when some value that you are trying to SELECT/UPDATE etc contains a single quote mark. The error that you receive looks like:
Microsoft JET Database Engine (0×80040e14)
Syntax error (missing operator) in query expression ‘Name = ‘Carolyn O’Tooley'’.
Because of the presence of the ‘ in the name Carolyn O’Tooley the database engine thinks that you are constructing a WHERE clause like:
WHERE name = ‘Carolyn O’
and doesn’t know what to do with the rest of the name (Tooley). To solve this problem you need to use the Replace() function and replace all single quotes with two single quotes.

July 9th, 2008 at 1:57 am
thanks you great to be the first
and good tip cuz I have this error this make me made I hope thats works thanks you again