Validating email addresses

noelgarry

New member
Local time
Yesterday, 16:06
Joined
Jul 11, 2007
Messages
8
Hi
I have a large file where I am trying to clean up the data.
One of the fields is the email address.
I want to check if the email address has something followed by an @ symbol followed by something else. If it does not, then I want to replace it with a null value.
Can you help?
I thought that I could use the wildcard features such as <>*@* but this does not appear to be working.
Noel
 
Having *@* as query criteria will find the records with @. You could then just do a copy/paste or update query into a field and only those records that have the @ will get an entry in the other field.

I
 
The *@* criteria does not appear to be working for me.
I was putting in <>"*@*" is this correct.
What I am intending is that the field is not equal to anything followed by an @ followed by anything?
Noel
 
*@* worked for me because I just checked it as I was not 100% that @ would be OK.

Not Like "*@*" works for me.

Make sure the " " are either side. Mine does it automatically. The full entry to find records with @ is Like "*@*"

Either way, whether you find the records with @ or the records without @ you are there clean up purposes.
 
Adam,

He may end up needing Left and Right if he has any spaces followed by & "" &
 
I have no idea what he wants Mike, but you're probably leading him in the wrong direction like always... :)
 

Users who are viewing this thread

Back
Top Bottom