Conditional Formatting based on value of another cell

J

jpkeller55

I am trying to get cell A1 to display in bold when the value of cell B
is between 20 and 40 (inclusive).

Any ideas?

Thanks
 
F

Frank Kabel

Hi
try the following:
- select cell A1
- goto 'Format - Conditional format'
- enter the following formula:
=($B$1>=20)*($B$1<=40)
- choose your format
 
D

Domenic

Hi,

Try:

"Formula Is" =($B$1>20)*($B$1<40)

and choose your formatting.

Hope this helps!
 
T

Trevor Shuttleworth

Select cell A1

Format | Conditional formatting... | Condition 1 | Formula=
=AND($B$1>=20,$B$1<=40)
and choose Format... | Font | Font style = Bold

Regards

Trevor
 
Top