I still can't get it to work. I know it is obviously operator error but
still need some help. My data is in column C which grows longer every day.
Every conditional format I try recognizes the first condition but not the
second and third. For example a number may appear 12 times but it still
codes with the color from 5-10. What am I doing wrong?
Try using Conditional Formatting in C1 using 'Formula Is' with these three
formulas in the three conditions, then highlight the whole of column C and
go to Conditional Formatting again, OK
=AND(COUNTIF(C:C,C1)>5,COUNTIF(C:C,C1)<11)
=AND(COUNTIF(C:C,C1)>10,COUNTIF(C:C,C1)<16)
=COUNTIF(C:C,C1)>15
Regards,
Alan.
>I still can't get it to work. I know it is obviously operator error but
> still need some help. My data is in column C which grows longer every
[quoted text clipped - 22 lines]
>> > 15
>> > times I want all occurances highlighted in red. Any suggestions?
Alan - 19 Jul 2006 00:38 GMT
The first formula should be:
=AND(COUNTIF(C:C,C1)>4,COUNTIF(C:C,C1)<11)
>4, not >5
REgards,
> Try using Conditional Formatting in C1 using 'Formula Is' with these three
> formulas in the three conditions, then highlight the whole of column C and
[quoted text clipped - 32 lines]
>>> > 15
>>> > times I want all occurances highlighted in red. Any suggestions?