Ozgrid, Experts in Microsoft Excel Spreadsheets
Javascript DHTML Drop Down Menu Powered by dhtml-menu-builder.com
Learn how to create Excel dashboards.

Excel VBA Macro - Count Or Sum By Fill Color

Information Helpful? Why Not Donate.

TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Originally Posted in our Excel Help Forum

See Also: Sum/Count Cells By Color

OpsO wrote:

I am trying to count different colored numbers entered in a field. E.g. I would like to highlight an area and get the sum of any 'red', 'black' or ‘blue’ numbers. I have tried the help function but have become completely stuck. Hopefully this is a simple question and any help would be great! Many thanks.

Dave Hawley provided a link to the following User Defined Functions written for just this purpose.

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
 
'The following counts cell values based on “fill” colour
 
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
End Sub

New & Less Than You Think: List Managers | Working With Excel Sheets In VBA | Excel Charting Lessons | Delete rows by condition | TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | More Free Downloads.. Best Value: Finance Templates Bundle

Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money

Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to special@ozgrid.com 31 days after purchase date.


Instant Download and Money Back Guarantee on Most Software

Try out: Analyzer XL | Downloader XL | Smart VBA | Trader XL Pro (best value) | ConsoXL | MergeXL | O2OLAP for Excel | MORE>>

Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!

Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft

GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS