Eliminate Invalid Email Addresses in Excel: Discover These 2 Effective Methods

Are you struggling with how to find invalid email addresses in your Excel sheets? Our guide and practice file will demonstrate how to identify them easily using a practical approach. In this tutorial, I’ll show how to use autofilters and data validation.

Have you ever had a week when multiple requests come together at once? Two friends wanted to send emails to their clients. Both individuals wanted to find email addresses using improper formats before sending out the emails. They weren’t looking for Excel to show that the john.doe@xyz.com account existed. Instead, they wanted to make sure the data record had the correct email address format. You might think of this as data cleansing.

Excel offers two ways to check for invalid emails, but it doesn’t use a predefined function like ISEMAIL, which is found in Google Sheets. I looked through the online Excel functions list from Microsoft . The first solution is easy and filters for various characters. Like the Google function, it is easy to do but not 100% reliable. The problem is, email formats have some complex rules that may require another Excel feature called Data Validation.

Email Address Format Rules

I’m sure there may be a way someone could write Excel code to validate email addresses using regular expressions or syntax rules. I didn’t want to take that path, as I’m not a coder. While researching, I noticed more possibilities for valid email addresses than I realized. Here are a few examples:

  1. They can contain the “+” sign even though many systems disallow this character. For example, Gmail allows you to use the plus sign for their version of disposable email addresses.
  2. They can contain multiple periods.
  3. Top-level domains are not always 3 letters like .com, .net or .org. All country codes are two letters, and then there are TLDs like .travel or .museum.
  4. They can contain hyphens.
  5. Email addresses are case-insensitive. It doesn’t matter if you use upper or lowercase letters.

If you want to get the specifics, there is a standard RFC 822 document for internet messaging.

After scrolling through these Excel address lists, I settled on two rules, identifying most of the bad email address entries. These aren’t email-addressing laws or absolutes. Instead, these are simple rules to cut 95% of the badly formatted email addresses.

  1. The email address had to contain the @ sign
  2. The email address had to contain at least 1 period.

The nice thing about these two rules is I could have Excel find the invalid emails using the Filter command. Below you will see a screen snap of the type of entries that were in these Excel spreadsheets. You can also see where Excel will create hyperlinks on improper entries.

Excel sheet with invalid email address examples
Excel sheet with invalid email address examples

How to Filter Email Addresses in Excel

This simple method filters out emails that do not contain the @ sign or a period using Excel’s custom autofilter. It’s great for doing a first pass.

  1. Click the column header that contains your email addresses.
  2. From the Data menu, click Filter. This will add a drop-down icon to your column header.
  3. Click the down arrow control in the top right of the column containing your email addresses.
  4. From the drop-down menu, select Text Filters.
  5. From the sub-menu, select Custom Filter…
Selecting Custom fFlter from Text Filters menu.
Choosing a Custom Filter
  1. In the Custom AutoFilter dialog box, enter the two filter criteria using the “does not contain” selection. Make certain to use the Or radio button option. The first criterion is “@” and the second is “.
Creating a Custom AutoFilter using OR logic.
Creating Custom AutoDilter with OR logic
  1. Click OK.
Invalid email address list after custom filter.
A filtered list of invalid email addresses

Once you click OK, Excel will show the emails that don’t have either the @ sign or a period. These are the problem records. You can either delete them or try to make corrections. Unfortunately, the rules aren’t perfect, as you may still get some incorrect ones that slip through, such as anne.h@examplecom. In this example, both the “." and “@" are present, but it is still invalid since a second period is needed between “example” and “com.”

After doing this exercise, I did see some other patterns. For example, some people would type some combination of “do not send email.” This tends to happen if your user input form doesn’t do field validation. Other times, the reverse would happen where people used “shift 2” or [at] instead of the “@ sign.” This is a tactic some people use online to prevent email bots from scraping their addresses.

Find Invalid Email Addresses Using Excel Data Validation

The second solution is more advanced but will find more invalid entries. It also has the benefit of flagging emails if you’re typing entries into the Excel sheet. A reader pointed me to this solution from Syntax Byte Tutorials, and it has worked in my email tests. I’ve included a practice spreadsheet at the bottom with my invalid email addresses for testing.

  1. Open your spreadsheet. In the sample sheet at the end, I’ve put my test email addresses in Column A.
  2. Click Column A header to highlight the entire column of email addresses.
  3. Click Data from the Excel Ribbon.
  4. From the Data Tools group, click the down triangle next to Data Validation.
  5. From the drop-down menu, select Data Validation
Selecting Data Validation... from drop-down menu.
Excel Data Tools Group
  1. The Data Validation dialog opens.
  2. In the Allow: drop-down menu, select Custom.
  3. In the Formula: field, copy and paste the code below.
=AND(ISERROR(FIND(" ",A1)),LEN(A1)-LEN(SUBSTITUTE(A1,"@",""))=1,IFERROR(SEARCH("@",A1)<SEARCH(".",A1,SEARCH("@",A1)),0),NOT(IFERROR(SEARCH("@",A1),0)=1),NOT(IFERROR(SEARCH(".",A1,SEARCH("@",A1))-SEARCH("@",A1),0)=1),LEFT(A1,1)<>".",RIGHT(A1,1)<>".")
  1. Click OK.
  2. Click the small triangle to the right of Data Validation again. Your email address column should show as highlighted.
  3. Select Circle Invalid Data from the menu.

After a few moments, you should see red circles around the invalid entries. I also applied a yellow background to make it easier to test.

Invalid emails after apply data validation,
Invalid Email addresses circled in red

Another benefit to using Excel Data Validation is that it will prevent bad email addresses from being accepted if you highlighted the entire column.

Troubleshooting Data Validation

If you don’t see your expected results, it could be for several reasons.

  1. You didn’t highlight the entire column of email addresses.
  2. Your email addresses aren’t in Column A.
  3. You inadvertently edited the formula when pasting. This is easy to do if you try to use your directional keys to go back and forth. You can try using Excel Formula Auditing if an Excel formula error occurs.

Other Steps You Might Take

I also saw several emails with spaces, such as anne h@example.com. I’m unsure if the spaces are legitimate, but I recall AOL using them at some point. However, many email systems will not accept spaces in an email address.

The other item I noticed was many duplicate email addresses. Either people had entered the information multiple times, or perhaps the address was shared by two or more people. You should take steps to remove these duplicates, as the recipients do not want multiple copies. Some may even get mad enough to flag your email as spam.

These methods for Excel email validation aren’t foolproof. They provide you with an easy method for finding invalid email addresses so you can act on them promptly. Also, removing the bad ones stops people from getting those annoying bounce-back messages from their ISP saying they don’t exist.

Excel Practice File