If cell does not include @, then blank

J

jermsalerms

cells A2:A901 contain email addresses.

some say n/a, none, no, etc.

I want to filter all those out...so I am trying to figure out how to
write a formula that will only display the cell if the is and @ symbol
included.

Im not sure what function will search for a peticular character and how
to write the formula
 
D

Dave Peterson

=IF(ISNUMBER(SEARCH("@",A2,1)),A2,"")
or
=if(countif(a2,"*@*"),a2,"")

Or just apply Data|filter|autofilter
Contains
@
 

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