Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

First open the Workbook in which you wish to count or sum cells by Pressing (Alt+F11) and then, from

within the Visual Basic Editor go  to Insert>Module to insert a standard module.And save it by pressing
(Alt + Q) key

TO SUM SAME COLOR CELLS:--

(1)

Function ColorFunction(rColor As Range, rRange As Range, Optional SUM As


Boolean)

Dim rCell As Range

Dim lCol As Long

Dim vResult

''''''''''''''''''''''''''''''''''''''

'Written by Ozgrid Business Applications

'www.ozgrid.com

'Sums or counts cells based on a specified fill color.

'''''''''''''''''''''''''''''''''''''''

lCol = rColor.Interior.ColorIndex

If SUM = True Then

For Each rCell In rRange

If rCell.Interior.ColorIndex = lCol Then

vResult = WorksheetFunction.SUM(rCell,vResult)

End If

Next rCell

Else

For Each rCell In rRange

If rCell.Interior.ColorIndex = lCol Then


vResult = 1 + vResult

End If

Next rCell

End If

ColorFunction = vResult

End Function

(2)

Function SumColor(rColor As Range, rSumRange As Range)

''''''''''''''''''''''''''''''''''''''

'Written by Ozgrid Business Applications

'www.ozgrid.com

'Sums cells based on a specified fill color.

'''''''''''''''''''''''''''''''''''''''

Dim rCell As Range

Dim iCol As Integer

Dim vResult
iCol = rColor.Interior.ColorIndex

For Each rCell In rSumRange

If rCell.Interior.ColorIndex = iCol Then

vResult = WorksheetFunction.Sum(rCell) +
vResult

End If

Next rCell

SumColor = vResult

End Function

TO COUNT SAME COLOR CELLS:---

Function CountColor(rColor As Range, rSumRange As Range)

''''''''''''''''''''''''''''''''''''''

'Written by Ozgrid Business Applications

'www.ozgrid.com

'Counts cells based on a specified fill color.

'''''''''''''''''''''''''''''''''''''''

Dim rCell As Range

Dim iCol As Integer

Dim vResult
iCol = rColor.Interior.ColorIndex

For Each rCell In rSumRange

If rCell.Interior.ColorIndex = iCol Then

vResult = vResult + 1

End If

Next rCell

CountColor = vResult

End Function

You might also like