Written by Allen Wyatt (last updated August 20, 2022)
This tip applies to Excel 97, 2000, 2002, and 2003
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 (2127) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Checking All Cell Formatting in VBA.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
You can use some of the tools in Excel to convert cell references in formulas into names. Converting back (from names ...
Discover MoreFormatting a cell could, if you desire, also include the indentation of information within the cell. This tip examines ...
Discover MoreWant to copy formatting from one cell and paste it into another cell? It's easy to do if you use the Paste Special ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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