Querying part data

  • Thread starter Thread starter Alex H
  • Start date Start date
A

Alex H

Hi -
I have two list sof email addresses and I need to run an Unmatched query to
select from the first list all records where there is no match on the email
domain (ie everything after the '@'sign in the email address) .

Could some kind person advise me how I select the string from the '@'

Thanks
 
Alex H said:
Hi -
I have two list sof email addresses and I need to run an Unmatched query
to select from the first list all records where there is no match on the
email domain (ie everything after the '@'sign in the email address) .

Could some kind person advise me how I select the string from the '@'


Mid$([Domain], Instr([Domain], "@") + 1)

if the field Domain is

(e-mail address removed)

the Mid$ above will give you

here.com


Tom Lake
 

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