View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.misc
Texas10 Texas10 is offline
external usenet poster
 
Posts: 13
Default Conditional format help

Okay sorry let me add some things i should've said, the repeating number will
end the list but it is possible to have another string of repetitions before
this one. Can you have it where it will recognize a repetition of about 3 or
more and highlight that cell next to it only when the repetition of 3 or more
occurs??? So I could have 2 highlighted cells in column A if B has more than
1 string of repetitions. Column B will always end with a repitition though.

"T. Valko" wrote:

Also, does the repeating number always end the list? Like this:

3
2
3
3
3

Or, is this possible:

3
2
3
3
1

We're gong to need a thorough explanation of the possibilities!

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
Well, you said the numbers are all different until they start repeating so
I assumed every number is unique except for the number that repeats and
the repeating number only shows up where it starts to repeat.

Is it possible that there is more than one repeating number:

3
2
3
3
2
2


--
Biff
Microsoft Excel MVP


"Texas10" wrote in message
...


"T. Valko" wrote:

The numbers are all different but there comes a
point when they start to repeat

Try this...

With your data in the range A2:B9...

Selet the *entire* range A2:A9 starting from cell A2. Cell A2 will be
the
active cell. The active cell is the one cell in the selected range that
is
not shaded. The formula will be relative to the active cell.

Goto the menu FormatConditional Formatting
Select the Formula Is option
Enter this formula in the box on the right:
=AND(COUNTIF(B$2:B$9,B2)1,COUNTIF(B$2:B2,B2)=1)
Click the Format button
Select the desired style(s)
OK out

--
Biff
Microsoft Excel MVP

Okay this formula works but it highlights the first value that's part of
the
repetition. So just in case I have a 5 in B2 but then the repetition of
5's
starts in B10 it will highlight B2 since there was a 5 there. Can you
have
it only do the highlight when it's the beginning of the repetition part??
This could work but it's possible that I might have avalue earlier in the
column that matches the repetition value.
Ms-learner the formulas you posted didn't do what I need, thanks but they
all highlight different areas.