Changing a color in a cell based on the text in another cell

R

Ryan

I am trying to change the color in a cell based on the text I enter in
another cell. EX. If I enter Arizona in cell B2 than cell B24 will turn red.
I need to do this for several answers, so B24 would need to change red if I
enter Arizona or Hawaii or Mississippi....ect.
 
D

Daniel.C

Use conditional formatting with formula :
=OR(B2="arizona",B2="hawai",B2="Mississippi") etc.
You can also consider lookup if you have somewhere a list of these
states.
HTH
Daniel
 
B

Bob I

Use Conditional Formatting. Formula is

=(B2="Arizona")+(B2="Hawaii")+(B2="Mississippi")
 
R

Ryan

Works Perfect!

Thank you.

Daniel.C said:
Use conditional formatting with formula :
=OR(B2="arizona",B2="hawai",B2="Mississippi") etc.
You can also consider lookup if you have somewhere a list of these
states.
HTH
Daniel
 
Top