Reputation: 11
I want to have a cell highlighted green if the next cell is greater than the current cell. This formatting should apply for an entire column.
E.g. if A2 > B2
then A2
should become green. If A3 > B3
then A3
should become green, and so on.
Note: I want to not have this done by individual formatting, but by a general rule.
Upvotes: 1
Views: 5035
Reputation: 11968
Go to Conditional formatting
, add new rule with type Use a formula...
, add formula =$A1>$B1
, into Applies to
add range =$A:$A
. That's all.
Upvotes: 3