Home > OS >  Highlight Row of Checkboxes if NONE are Checked
Highlight Row of Checkboxes if NONE are Checked

Time:09-27

In my spreadsheet, I would like to highlight a series of cells (all in the same row) between two columns when all of the boxes are not checked.

For example, in the sheet below, I would like to highlight D4:I4 because none of the boxes are checked.

Screenshot of example

Thanks in advance!

CodePudding user response:

Add formula to conditional formatting:

=not(or($D1:$I1))

and apply to D:I range

enter image description here

  • Related