Google-sheets – How to apply conditional formatting to a Google Sheet to show three checkboxes minimum are checked

google sheets

I work in a school where I used a Google Sheet to track student attendance.

If a student is late or absent, I check a checkbox.

I would like to find a formula to automatically turn a line red if three checkboxes in the line have been checked so I know which students need to get a warning.

Can anybody help?

Best Answer

Here's how to implement it:

  1. Select your entire range that contains checkboxes.

  2. Choose Format > Conditional formatting from the menu.

  3. In the Conditional Formatting dialog box, under "Format cells if...", use the drop-down menu to select "Custom formula is" (bottom of the drop-down list).

  4. In the text box below that, enter this formula:

=COUNTIF(INDIRECT(ROW()&":"&ROW()),"="&TRUE)>=3

  1. In the "Formatting style" section, click the paint can icon and choose red for the background (and perhaps the "B" for bold type as well).

  2. Click the blue "Done" button and close the dialog box.