comparing addresses

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

Alex

Hi everyone, would apprerciate some help with following

i have a database of addresses, which also contains email address for
establishment. We also have a second table, which cojtains a similar list
of addresses and email lists.

What I want to try and do is compare the email address, but not all of, just
the domain part. i cant think what would be the best way to do this?

Thanks

Alex
 
The domain part will be Mid([EmailAddress], InStr([EmailAddress], "@") + 1)
 
Back
Top