View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
RAYMOND KELLY RAYMOND KELLY is offline
external usenet poster
 
Posts: 4
Default Summing Cells with a BLUE font (or any other color)

To all,

I am trying to sum cells that have a specific color.

Here is what I have so far:
Function SumByColor(InRange As Range, WhatColorIndex As Integer)

Dim Rng As Range
Dim OK As Boolean

Application.Volatile True
For Each Rng In InRange.Cells
OK = (Rng.Font.ColorIndex = WhatColorIndex)
If OK And IsNumeric(Rng.Value) Then
SumByColor = SumByColor + Rng.Value
End If
Next Rng

End Function
****Thank you Chip****

When I attempt to use this, I get an error "#NAME?"

Any ideas on what is going wrong?
Thanks.
--
RAYMOND KELLY