For The String Extraction Experts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to parse a single field to clean up an old database of addresses
for a friend.

How can I remove the word "and" as in John and Jane Doe while preserving the
fields that have "John's Automation Service"??


Thank you in advance
 
If you are going to update the existing data, please back up your data first.

Try with the use of the Replace function to replace the " and " word with
empty value ""

Replace([FieldName]," and " , "")
 

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