For example, if J2 is not blank anymore, the whole row turns green.
I have this written down:=IF(NOT(ISBLANK($J$2)),TRUE,FALSE), and apply only to row 2. But I want to expand to the whole sheet, not just only row 2.
=IF(NOT(ISBLANK($J$2)),TRUE,FALSE)
Just remove dollar sign from in front of 2 like-
2
=IF(NOT(ISBLANK($J1)),TRUE,FALSE)
In fact you can simply use below formula.
=$J1<>""
2.1m questions
2.1m answers
60 comments
57.0k users