Email field name weirdness...HELP!

  • Thread starter Thread starter Dave Cobb
  • Start date Start date
Assuming that what you posted is the syntax you now have, try an update
query like this:

UPDATE TableName
SET = Left([Email], InStr([Email], "#") - 1)
WHERE InStr([Email], "#") > 0;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top