Conditionally Formatting for a Pattern

Written by Allen Wyatt (last updated December 26, 2020)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


1

Kim has a column of data used to contain a location code. This code consists of a single letter followed by two digits, such as A03 or B12. Kim would like to conditionally format the column so that anything entered into the column that doesn't use this pattern is highlighted in some way.

There are many ways that this problem can be approached. Each approach depends on developing a formula that can be used within a conditional formatting rule to return either True or False and trigger the conditional format. (This tip won't go into how to create a conditional formatting rule but will instead focus on the various formulas that can be used in the rule. How you create conditional formatting rules is covered in other ExcelTips.)

Whatever formula is put together has to test three things:

  • There are exactly three characters in the string.
  • The first character is a letter.
  • The second and third characters are digits.

Finding out if the text in a cell has only three characters is rather easy; you can use the LEN function to do it:

=LEN(A1)=3

Finding out if the first character is a letter is also rather easy. In fact, there are a couple of ways it can be done. Any of the following will return True if the first character is a letter:

=AND(CODE(LEFT(A1,1))>64,CODE(LEFT(A1,1))<91)
=AND(LEFT(A1,1)>="A",LEFT(A1,1)<="Z")

These check to make sure that only an uppercase letter is in the first position. If you want to also accept lowercase letters, then you can use a variation of the second test:

=AND(UPPER(LEFT(A1,1))>="A",UPPER(LEFT(A1,1))<="Z")

If both upper- and lowercase letters are acceptable (along with virtually any other symbol), then you might consider using the following test:

=NOT(ISNUMBER(LEFT(A1,1)+0))

Here are a couple of ways you can apply the third test-whether the second and third characters are digits:

=ISNUMBER(VALUE(RIGHT(A1,2)))
=ISNUMBER(--RIGHT(A1,2))

Note that these approaches treat the last two characters together. This means that "1", "11," and "111" would all pass the test—they successfully check out as numbers. If your formula were checking only the last two digits, this could be a problem, but the fact that you will also include the first check (for the overall length of the string in the cell and that it must be 3), then it doesn't present a problem at all.

The trick, now, is to combine your approach-of-choice for each of the three tests into a single formula. This can be done using the AND function. I'll just pick the shortest from each of the tests and combine them in this way:

=AND(LEN(A1)=3, AND(LEFT(A1,1)>="A",LEFT(A1,1)<="Z"),ISNUMBER(--RIGHT(A1,2)))

As written, this formula returns True if all the tests are passed, which means that the cell contains a location code with a valid pattern. This would work great as a conditional format if Kim were to format the column as a color (say, green) and then use the conditional format to remove the green color. This may seem backward, and you may actually only want to apply a format if the pattern isn't met. If that is the case, then simply encase the formula in a NOT function to reverse the True/False that is returned:

=NOT(AND(LEN(A1)=3, AND(LEFT(A1,1)>="A",LEFT(A1,1)<="Z"),ISNUMBER(--RIGHT(A1,2))))

As you can tell, using a formula like this can be a bit tricky. You could, if you prefer, create a UDF (user-defined function) that would make the conditional formatting rule a bit shorter. The following macro is a good way to go:

Function IsBadPattern(sCell As String) As Boolean
    IsBadPattern = Not(sCell Like "[A-Z][0-9][0-9]")
End Function

To use the UDF in your conditional formatting rule, all you need to do is use the following formula:

=IsBadPattern(A1)

The result of the UDF will be TRUE if the string in the referenced cell doesn't match the pattern you wanted. As written, it won't allow for the use of lowercase letters in the first character position. If you need to allow lowercase letters, you don't need to change the UDF. Instead, change the formula to the following:

=IsBadPattern(UPPER(A1))

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9976) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Better Ways to Insert Symbols

The traditional way to insert symbols into a document is to use the Symbol dialog box. This tip looks at ways other than ...

Discover More

Flipping Landscape Orientation when Printing

When printing a worksheet, you may want to rotate the output on the page to fit a certain orientation. Excel doesn't ...

Discover More

Making Common Information Accessible

Got a bunch of info that is common to a lot of your documents? Here's a way to get that information standardized among ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Conditional Formats for Odd and Even Columns

Setting up conditional formatting can be challenging under some circumstances, but once set it can work great. Unless, of ...

Discover More

Returning a Value Based on Text Color

Conditional formatting rules can be used to adjust the way in which information is displayed in Excel, such as the text ...

Discover More

Controlling Data Entry in a Cell

Sometimes you want whatever is displayed in one cell to control what is displayed in a different cell. This tip looks at ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five more than 3?

2020-12-26 07:42:44

Simon Freeman

MX&HNY - After consulting my friend Mr Google, and it took him a while, I understand that the "--" in "=ISNUMBER(--RIGHT(A1,2))" is an alternative to the Value function. I have never come across this before. Is it only instead of the Value function, can you use it anywhere, are there other similar alternatives for other functions. How do you find out about it. Thanks - Simon


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.