Written by Allen Wyatt (last updated June 1, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
Excel has two different types of formatting that can be applied to cell. The first is explicit formatting. This type of formatting is applied by using the toolbars or by using the Cells option from the Format menu. The second type of formatting is conditional formatting. This type of formatting is applied based on a set of rules that you define.
It is important to understand that these two types of formatting are separate and distinct from each other. For instance, if you explicitly format a cell as bold red, that is the way it appears. If you later apply a conditional format to it, and that format causes the cell to appear in green, that is exactly what is happening—the cell is appearing in green, but it is still formatted as red.
What does this have to do with VBA? If you test the formatting of a cell in VBA, then the formatting you are testing is the explicit formatting. In the above scenario, this means that the test will always indicate that the cell is bold red, and never report that it is green, regardless of what the conditional formatting is doing to the cell. This is because conditional formatting affects the cell's display, not its underlying (explicit) formatting.
The other upshot of all this is that if you want to find out what conditional formatting is being displayed, you may need to recreate all your conditional tests within VBA. This can get rather complex rather quickly. For more information on this topic, there is a great page you can refer to. Check out one of Chip Pearson's pages, here:
http://www.cpearson.com/excel/CFColors.htm
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8490) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Checking All Cell Formatting in VBA.
Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!
Enter a fraction into Excel, and you may be surprised that the program reduces the faction to its simplest form. If you ...
Discover MoreExcel provides a variety of tools you can use to make your data look more presentable on the screen and on a printout. ...
Discover MoreThe ability to center text across a range of cells has long been a staple of experienced Excel users. Here's how to ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-08-31 07:45:30
Peter McNab
I have found range.DisplayFormat is a handy property that could be included in your tip. Even though the displayed format is set by a condition, it is accessible and can be tested as a property of the cell.
I have found it useful:
to check the current status of a conditional format without evaluating the condition or
when making a snapshot of a sheet I can remove conditional formats but preserve the displayed formats
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments