Find more than 1 @ in email

S

Song Su

(e-mail address removed)@gmail.com

How to use query to find email address field that contain more than 1 @ sign
like one above?

Thanks.
 
J

John Spencer

Use criteria like the following against the email address field.

LIKE "*@*@*"

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County
 
M

Marshall Barton

Song said:
How to use query to find email address field that contain more than 1 @ sign
like one above?

Set the criteria for the email address to:

Like "*[@]*[@]*"

You may not need the [ ]s in there.
 
F

fredg

(e-mail address removed)@gmail.com

How to use query to find email address field that contain more than 1 @ sign
like one above?

Thanks.

CountOccurrances: (Len([FieldName])-Len(Replace([FieldName],"@","")))
 

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

Top