Whole Row Cond. Format

R

Ripper

I have an entire row, from A - Q, that hinges on the value in cell B.

Is there a way to have conditional formatting hightlight all cells the the
row, A-Q, when the value of cell B meets the criteria?
 
D

Dave Peterson

Select your range to apply the conditional formatting (say A2:Q999) and with A2
the activecell, just make sure you "anchor" the formula to column B by using $B2
in the formula:

=and($b2>5,$b2<100)

for instance.
 
R

Ripper

Worked Great!

I highlighted and wrote the formula and WHAMO! It worked perfectly.


--
Thanks As Always
Rip


Dave Peterson said:
Select your range to apply the conditional formatting (say A2:Q999) and with A2
the activecell, just make sure you "anchor" the formula to column B by using $B2
in the formula:

=and($b2>5,$b2<100)

for instance.
 
Top