Written by Allen Wyatt (last updated March 7, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003
Excel allows you to apply all sorts of formatting to the cells in your workbook. One of the things you can do is to "shade" cells using a pattern or color. (You do this on the Patterns tab of the Format Cells dialog box.) At some point you may want to know how many cells in a range are shaded.
There is no worksheet formula in Excel that will allow you to count shaded cells. Instead, you must develop your own macro to do this. The following macro is an example of a way to approach this problem. It counts the number of shaded cells in the range of A1 through J20, and places the count in cell A1.
Sub CountColor() Dim irow, icol As Integer Cells(1, 1) = 0 For irow = 1 To 20 For icol = 1 To 10 If Cells(irow, icol).Interior.ColorIndex _ <> xlColorIndexNone Then Cells(1, 1) = Cells(1, 1) + 1 End If Next icol Next irow End Sub
Notice that the heart of the routine is the comparison that is done between the ColorIndex of each cell and the pre-defined xlColorIndexNone constant. If they are not equal, then the cell has been shaded in some way.
This same basic technique can be easily adapted to a custom function. Notice in the following that the same comparison is done on a cell-by-cell basis:
Function FindShades(a As Range) As Integer FindShades = 0 For Each c In a If c.Interior.ColorIndex <> xlColorIndexNone Then FindShades = FindShades + 1 End If Next c End Function
In order to use this function, simply use it in a cell, as a formula, and specify a range in the formula:
= FindShades(B7:E52)
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2059) applies to Microsoft Excel 97, 2000, 2002, and 2003.
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!
When you use a macro to process data you always run the risk of making that data unusable by Excel. This is especially ...
Discover MoreGot a large group of people listed in a worksheet and you want to make sure that each person has met with every other ...
Discover MoreDoes your macro need to allow the user to specify a particular file name that should be used by the macro? Here's a quick ...
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