Conditional Format based on a different cell

  • Thread starter Thread starter Ramos
  • Start date Start date
R

Ramos

Hello, I'm trying to have cell a3 highlight when I enter a value if value in
cell a1 = yes. PLEASE HELP!
 
In Cell a3... Format > Conditional Formatting
Condition 1 change drop down from "Cell Value Is" to "Formula Is"
Enter the formula... =A1="Yes"
Click the Format button and set the format.
 
Thanks... a3 does highlight when a1 has a value of yes but I only want a3 to
highlight also when I enter a value into a3.
 
It might have been wise for you to have said so when you asked your
question.

=AND(A1="Yes",A3<>"")
 
Back
Top