Sum by Font Color in Excel (2 Effective Ways)

This article illustrates how to sum cells by their font color in excel. If you have multiple cells with varied font colors, then you might need this. The following picture highlights the purpose of this article. Have a quick look through it to learn how to do that.

Sum by Font Color in Excel


Download Practice Workbook

You can download the practice workbook from the download button below.


2 Effective Ways to Sum by Font Color in Excel

1. Sum by Font Color with SUBTOTAL and Filter

Assume you have a dataset with varied colored fonts in a single column as follows. Then this method might be the best to sum them by their font color. Follow the steps below to apply this method.

📌 Steps

  • First, enter the following formula in cell C13. The 9 in the formula refers to the SUM function. It enables the SUBTOTAL function to return the sum of the preferred range.
=SUBTOTAL(9,C5:C11)

  • Now select anywhere in the dataset. Then press CTRL+SHIFT+L to apply Filter on the dataset. After that, you will see the filter buttons at the lower right corners of the header cells as shown in the picture below.

  • Now, filter the dataset by a particular color using the filter button as shown below.

  • Then, you will get the following result.

Sum by Font Color with Subtotal and Filter

Read More: How to Sum Filtered Cells in Excel (5 Suitable Ways)


Similar Readings


2. Sum by Font Color with a User Defined Function (UDF) in Excel

The earlier method will not work if you have a dataset like the following one. You can use a User Defined Function (UDF) instead. Follow the steps below to do that.

📌 Steps

  • First, save the workbook as a macro-enabled workbook. Next, press ALT+F11 to open the VBA window. Then select Insert >> Module as shown in the picture below. This will create a new blank module.

  • After that, copy the code given below.
Function SUMBYFONTCOLOR(ref_color As Range, sum_range As Range)
Dim cell_color, sum_color As Long
Dim Cell As Range
Application.Volatile
sum_color = 0
cell_color = ref_color.Font.ColorIndex
For Each Cell In sum_range
If cell_color = Cell.Font.ColorIndex Then
sum_cell = WorksheetFunction.Sum(Cell, sum_cell)
End If
Next Cell
SUMBYFONTCOLOR = sum_cell
End Function
  • Now, paste the copied code onto the module window as follows.

Sum by Font Color with UDF in Excel

  • After that, go tho your worksheet. Then write the desired color names in cells I5:I9. Next, change their font colors accordingly.
  • Now, enter the following formula in cell J5. Then, use the Fill Handle icon to apply the formula to the cells below.
=SUMBYFONTCOLOR(I5,$B$4:$G$9)

Finally, you will get the following result.👇

Sum by Font Color with UDF in Excel

Now, if you change the font color of any cells within the range, the result won’t update. You need to double-click on a cell and then click away to force the recalculation. Alternatively, you can press CTRL+ALT+F9 to get the same result.

  • Now, copy the following code if you don’t want to do either.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("A:Z")) Is Nothing Then
ActiveSheet.Calculate
End If
End Sub
  • Then, go back to the VBA window. Next, double-click on the worksheet named UDF. This will open a blank window. After that, paste the copied code onto that window as shown in the following picture.

Now you can change the font colors and click away to update the results.

Explanation of the VBA Code

Function SUMBYFONTCOLOR(ref_color As Range, sum_range As Range)
This public function will take two arguments. The ref_color argument will take the font color from the reference cell. We will sum the cell values based on their font colors within the range referred to by the sum_range argument.

Dim cell_color, sum_color As Long
Dim Cell As Range
Declaring necessary variables.

Application.Volatile
This code line forces excel to recalculate whenever the user makes any changes.

sum_color = 0
Defining the initial value for the variable.

cell_color = ref_color.Font.ColorIndex
The cell_color variable stores the font color of the cell referred by the ref_color argument.

For Each Cell In sum_range
This For Loop will execute the next code lines through each cell within the range referred by the sum_range argument.

If cell_color = Cell.Font.ColorIndex Then
Only if the font color of a cell within the sum_range matches with the font color of the cell referred by the ref_color argument then the next code lines will execute.

sum_cell = WorksheetFunction.Sum(Cell, sum_cell)
This code line activates the SUM function to add the cell values with matching font colors.

SUMBYFONTCOLOR = sum_cell
This code line stores the sum so that the function can return this value.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
This private subject procedure works only if any changes occurs within the particular worksheet.

If Not Intersect(Target, Range(“A:Z”)) Is Nothing Then
This code line ensures that the next code line will execute only if the user makes any changes within the defined range (A:Z).

ActiveSheet.Calculate
This forces a recalculation of all formulas within active the worksheet so that changes are updated.

Read More: How to Sum Range of Cells in Row Using Excel VBA (6 Easy Methods)


Things to Remember

  • Don’t forget to double-click a cell and click away to see the updated results if you change the font colors. Alternatively, you need to press CTRL+SHIFT+F9 for that.
  • You must click away within the defined range (A:Z) to update the results after changing the font colors.

Conclusion

Now you know the 2 most effective ways to sum cells by their font color in excel. Please let us know if this article has helped you with your problem. You can also use the comment section below for further queries or suggestions. Do visit our ExcelDemy blog to learn more about excel. Stay with us and keep learning.


Related Articles

Get FREE Advanced Excel Exercises with Solutions!
Md. Shamim Reza
Md. Shamim Reza

Md. Shamim Reza, a marine engineer with expertise in Excel and a fervent interest in VBA programming, sees programming as a time-saving tool for data manipulation, file handling, and internet interaction. His diverse skill set encompasses Rhino3D, Maxsurf C++, AutoCAD, Deep Neural Networks, and Machine Learning. He holds a B.Sc in Naval Architecture & Marine Engineering from BUET and has transitioned into a content developer role, generating technical content focused on Excel and VBA. Beyond his professional pursuits,... Read Full Bio

2 Comments
  1. Hello, is there a way to apply a date condition? Let’s say I want to count font colour but only between two dates, from the example above let’s say from B3 to G3 there’s dates 3/1/23, 3/2/23, 3/3/23 etc, I only want to count font color between first of the month and today’s date. Is there a way to do it?

    • Thank you Paul for reaching out. For your special case, it is possible to make a custom function that sums up all the numbers within a specific date range and has specific font color. To do this, we have to pass two more arguments in the function (Starting_Date & Ending_Date). For illustration, I have taken another data set that contains Dates on the column header as you suggested.

      Sum Count by cell Colors Comment-1

      I have written another code to create a User-defined Function named SumByDateColor.

      User Defined Function to Sum by Font Color & Date

      
      Function SumByDateColor(starting_date As Variant, ending_date As Variant, ref_color As Range, sum_range As Range) As Double
          Dim cell_color As Long, sum_cell As Double
          Dim cell As Range
          Application.Volatile
          sum_cell = 0
          cell_color = ref_color.Font.colorIndex
          'iterating through columns
          For i = 1 To sum_range.Columns.Count
              If (sum_range.Cells(1, i) >= starting_date And sum_range.Cells(1, i) <= ending_date) Then
                  For j = 2 To sum_range.Rows.Count
                  'iterating through rows from each column
                      Set cell = sum_range.Cells(j, i)
                          If cell_color = cell.Font.colorIndex Then
                              sum_cell = sum_cell + cell.Value
                          End If
                  Next j
              End If
          Next i
          SumByDateColor = sum_cell
      End Function
      

      In cell L5, if we apply the function, it will return the sum of all the black font numbers from the first three columns (From 03/03/23 to 03/05/23).
      =SUMBYDateColor(I5,J5,K5,$B$4:$G$10)

      Results of applying User Defined Function

      In this way, we can apply the function for L6: L9 as well and get the following result.

      Ultimate Results after Applying User Defined Function

      I hope it will solve your problem. If you have any further queries or need the work file, you can ask in our Exceldemy Forum.
      Regards
      Aniruddah

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo