The Simplest Way to Understand How to Count Colored Cells in Excel

Excel offers conditional formatting to apply logic against the data and extract the information based on the logic applied. Yet, Conditional formatting in excel has limits. That’s when Excel VBA comes to the rescue. Today, we will use Excel VBA and understand how to count colored cells in excel.

Become an AI-powered Business Analyst

Purdue Post Graduate Program in Business AnalysisExplore Now
Become an AI-powered Business Analyst

How to Count Colored Cells in Excel?

Conditional formatting in excel has some limits; when you want to extend a little, Excel VBA is for the rescue. Today we will consider a sample dataset as shown below and color individual cells differently. 

Count_Colored_Cells_1

Later, we will apply excel VBA Code to identify individual colored cells and count them. Let’s begin.

Initially, the developer options on Microsoft Excel will be disabled. Let’s enable it through the steps as mentioned below.

Steps to Enable Developer Options on Microsoft Excel:

  • Step 1: Click on the “File” menu

Count_Colored_Cells_2

  • Step 2: Navigate to the “Options” button.

Count_Colored_Cells_3

Become an AI-powered Business Analyst

Purdue Post Graduate Program in Business AnalysisExplore Now
Become an AI-powered Business Analyst

  • Step 3: Navigate to the “Customize Ribbon” option.
  • Step 4: Enable the “Developer” options, as shown in the image below.

Count_Colored_Cells_4

Now, the developer options are available on the toolbar. Click on the “Developer” options on the toolbar and you can see the following options as shown below.

Count_Colored_Cells_5

Now, click on the “Macros” option to design a Macro for your customized function.

A new dialogue box will be displayed on your screen where you can write the name for your Customized Macro and create it using the create button.

Count_Colored_Cells_6

Now, we will be creating a new macro named “CountColoredCells.” This will take you to a new coding window in Excel VBA as shown below.

Count_Colored_Cells_7.

The following code can be used to identify the colored cells in excel”

Function CountColoredCells(CurrentCell As Range, SpreadSheetArea As Range) As Long

    Dim ColoredCell As Range

    Dim colorCode As Long

    Dim ColoredCellCount As Long

    colorCode = CurrentCell.Interior.color

    For Each ColoredCell In SpreadSheetArea

        If ColoredCell.Interior.color = colorCode Then

            ColoredCell.Interior.color = ColoredCellCount + 1

        End If

    Next ColoredCell

    CountColoredCells = ColoredCellCount

End Function

The code uses the “ColoredCell.Interior.color” function to recognize the coiled filled in the cells selected. The variable “ColoredCell.Interior.color” is used to count the number of unique colors in excel and display the result.

Become an AI-powered Business Analyst

Purdue Post Graduate Program in Business AnalysisExplore Now
Become an AI-powered Business Analyst

Now, let’s call the new custom macro as shown in the image below.

Count_Colored_Cells_8

The parameters are explained below:

  • CountColoredCell - Macro.
  • H2 is the cell location of the color to be identified.
  • C2:C31 is the range of cells to consider to identify the colored cells.

Now the same cell can be dragged across all the cells to identify their respective colored cells. The final result will be displayed as shown below.

Count_Colored_Cells_9

With this, we have reached the end of this article on “How to Count Colored Cells in Excel.” If you have any queries about the concepts covered in this article, do let us know in the comments section below.

Kick-start your career growth story with our Professional Certificate Program in Business Analysis. Get a chance to master Excel, Tableau, and Python tools. Start learning now!

Next Steps

How to Group Rows in Excel can be your next milestone in mastering excel. The excel dashboards might have to make the user-interface simple. The filters and slicers may complicate things for the end user. Including Groups in Excel could be simple and helpful in reducing complexity. 

Keen to learn more about Business Analytics with excel? Simplilearn's Professional Certificate Program in Business Analysis course could be of great help. It is considered the best among the industry's top business analytics courses. This Simplilearn program is a result-oriented training and certification program that helps you master statistics and data analytics concepts. 

Should you have questions about this tutorial on "How to Count Colored Cells in Excel"? Please feel free to write to us in the comments below. Our expert team will resolve them and will be happy to answer them at the earliest. 

About the Author

SimplilearnSimplilearn

Simplilearn is one of the world’s leading providers of online training for Digital Marketing, Cloud Computing, Project Management, Data Science, IT, Software Development, and many other emerging technologies.

View More
  • Disclaimer
  • PMP, PMI, PMBOK, CAPM, PgMP, PfMP, ACP, PBA, RMP, SP, and OPM3 are registered marks of the Project Management Institute, Inc.