Search code examples
google-sheetsgoogle-sheets-formula

Highlight rows by non-blank


How could I highlight rows by non-blank until the True value in col A changes?

enter image description here

I tried:

=iseven(match($A1,unique($A$1:$A$15),0))

Solution

  • You may try:

    =isodd(countif(A$2:$A2,true))
    

    enter image description here