As far as I can tell you mean this formula:
=SUM(B11:B17*(COLORINDEXOFRANGE(B11:B17,FALSE,1)=3))
However, this will add up all the values, I'd like to add only the ones with
a specific criteria.
I have the following table (I've removed the column with each date):
Name Date
Name1 1/06/06
Name1 1/05/06
Name2 1/06/06
Name3 1/06/06
Name2 1/05/06
So,
I'm using COUNTIF(A1:A5,"Name 1") so that it will show me now many absences
does Name1 have (2).
However, if that absence was unmotivated I want to highlight it in red so
when I add up all the absences I want to see only the unmotivated ones.
> If you go back to Chip's page you will see he has an example with an array
> formula
[quoted text clipped - 19 lines]
> >
> > so that it would add only the red celled ones.
Peo Sjoblom - 24 Jul 2008 22:53 GMT
Forget about COUNTIF, add the criteria to the example formula
=SUMPRODUCT(--(COLORINDEXOFRANGE(B11:B17,FALSE,1)=3),--(B11:B17="x"))
will count red x in B11:B17

Signature
Regards,
Peo Sjoblom
> As far as I can tell you mean this formula:
>
[quoted text clipped - 46 lines]
>> >
>> > so that it would add only the red celled ones.
Alex Khan - 24 Jul 2008 23:15 GMT
Thanks a lot. That's what I wanted to do in the first place, forget about
COUNTIF :)
Your tip did the trick