Hi
This should give you the idea.
Function ColorAndName(ColRng As Range, NameRng As Range, Nme As String, coloffset As Integer)
lcolor = ColRng.Interior.ColorIndex
total = 0
For Each ce In NameRng
If ce.Interior.ColorIndex = lcolor And ce.Value = Nme Then
total = total + ce.Offset(0, coloffset)
End If
Next ce
ColorAndName = total
End Function
ColRng is the cell that has the color you want to match (say B4)
NameRng is the range that has the names (B4:B13)
Nme is the cell (or string) that has the name you want to check (N86)
coloffset is the offset from the name column that has the numbers you want to sum. So if you want to sum column C, then it would be 1).
In your example workbook put in the formula
=colorandname(B4,B4:B13,N86,1)
and it should return 13.42.
BTW, how did you make your function take the case of your UDF in the workbook???
rylo
Bookmarks