If Cell Includes

  • Thread starter Thread starter kinstlinger
  • Start date Start date
K

kinstlinger

I've been given a very large spreadsheet which includes email addresses,
some good, some bad, some in ancient form.

How can I make a statement which checks the various cells to see if
they include (or don't include) an '@' symbol ?
 
Hi!

This formula will return TRUE if A1 contains an "@" sign, FALSE if it does
not:

=ISNUMBER(FIND("@",A1))

Or, you can wrap that inside an IF function for a return of either Yes or
No:

=IF(ISNUMBER(FIND("@",A1)),"Yes","No")

Biff

"kinstlinger" <[email protected]>
wrote in message
news:[email protected]...
 

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