Reputation:
Is it possible to do dynamic conditional formatting in GS.
This is my formula in "Conditional formatting:
=$G145:$G146=MAX($G145:$G146)
I want to be able to drag the conditional formatting across the rows. Basically I want to highlight which cell in in Range G145-G146 is higher. But then drag it across the Column (Higher of Column H, Higher of column I, Higher of column J and so on).
Picture two:
Upvotes: 0
Views: 2210
Reputation: 1620
Yes it is. But you don't 'drag' it.
Select the whole range you want to include.
Right click and click conditional formatting
Choose custom formula
Adjust the formula below to the same range you selected
=max(arrayformula($G$5:$Z))
EDIT:
Select the whole range you want to include.
Right click and click conditional formatting
Choose higher then
Paste this in the formula bar
={G145,G146}
, could be ; depends on the country.
Upvotes: 1