I want to change the background color of a particular cell in a column if the value of that cell is greater than one cell in another column.
For example, the column that I want to compare all cells is Y and the cell that should be compared with is AA5
Right now I am manually comparing by adding the value of AA5 to the greater than format rule in google sheets conditional formatting.
I tried using =IF($Y:$Y>$AA5) and =$Y:$Y<$AA5 in the custom formula but didn't work.
Need help on this.


=IF(Y1>AA$5, 1)and=Y1>AA$5should work too - player0=AND($Y:$Y>AA5,$Z:$Z>AA8)this but didn't work? - chiju