Home » How to Search for Special Characters in a Cell in Excel

How to Search for Special Characters in a Cell in Excel

by Erma Khan

You can use the following formula to check if a given cell in Excel contains any special characters anywhere in the cell:

=SUMPRODUCT(--ISNUMBER(SEARCH({"!","#","$","%","(",")","^","@","[","]","{","}"},A2)))>0

This particular formula checks if cell A2 contains any special characters and returns TRUE if it does.

Otherwise, it returns FALSE.

The following example shows how to use this formula in practice.

Example: Search for Special Characters in Cell in Excel

Suppose we have the following list of phrases in Excel:

Suppose we would like to search each phrase in column A to determine if it contains a special character or not.

To do so, we can type the following formula into cell B2:

=SUMPRODUCT(--ISNUMBER(SEARCH({"!","#","$","%","(",")","^","@","[","]","{","}"},A2)))>0

We can then click and drag this formula down to each remaining cell in column B:

Excel search for special characters in cell

The formula returns TRUE if the phrase contains a special character.

Otherwise, it returns FALSE if no special characters are found.

For example, we can see:

  • The first phrase contains at least one special character.
  • The second phrase does not contain any special characters.
  • The third phrase contains at least one special character.

And so on.

Note that the formula we used contains the most common special characters but if there are other special characters you’d like to search for, simply include those within the SEARCH() function in the formula.

Also note that you can choose to only search for specific special characters if you’d like.

For example, you could use the following formula to only search for a dollar sign or percent sign in cells:

=SUMPRODUCT(--ISNUMBER(SEARCH({"$","%"},A2)))>0

This formula would return TRUE if a dollar sign ($) or percent sign (%) were detected in a given cell or FALSE if neither character was detected.

Additional Resources

The following tutorials explain how to perform other common tasks in Excel:

 How to Search for an Asterisk in a Cell in Excel
How to Search for a Question Mark in Excel
How to Find Unique Values from Multiple Columns in Excel

Related Posts