scanning excel list for invalid e-mail addresses
Or rather do this:
Assuming your address are in column A, copy this down a column
=AND(LEFT(RIGHT(A1,4),1)=".",NOT(ISERR(FIND("@",A1 ))))
Invalid address are singled out as FALSE
"Becky" wrote:
Hi. I'm not sure I'm in the right forum, but here goes.
Given a list of several hundred e-mail addresses in a column of an Excel
worksheet, is there a good way to identify invalid addresses? (for example,
if the '@' is missing) ?
thanks in advance
Becky
|