Reputation: 15
Need solution: (Unable to find in group based on below example)
Format cell color based on drop down.
Example
If A1 Drop down value 'Shirt' then color A2, A5 and A6 as yellow.
If A1 Drop down value 'Tie' then color A3, A7 and A9 as green.
User has to fill the highlighted columns if they select the value as Shirt or Tie.
Upvotes: 0
Views: 500
Reputation: 152505
Two rules with formula:
First:
Applies To: =$A$2,$A$5:$A$6
Formula: =$A$1="Shirt"
Second:
Applies To: =$A$3,$A$7,$A$9
Formula: =$A$1="Tie"
Upvotes: 1