Checkbox
=$C2=TRUEFormats the row when the checkbox in C is checked.
Apply a format to one cell by testing the value in another column.
Apply a format to one cell by testing the value in another column. Use =$C2="Overdue", then replace the sample ranges with the columns in your sheet.
The dollar sign locks the tested column while each row changes.
| A | B | C | |
|---|---|---|---|
| 1 | Task | Owner | Status |
| 2 | |||
| 3 | |||
| 4 |
=$C2=TRUEFormats the row when the checkbox in C is checked.
=AND($C2<>"Done",$B2<TODAY())Combines status and date.
=REGEXMATCH(LOWER($C2),"overdue|blocked")Matches either status word.
Apply the rule to the full target range and use the first data-row number in the formula.
Lock the tested column with a dollar sign.
Apply the rule to the full target range and use the first data-row number in the formula.
Lock the tested column with a dollar sign.
Send this recipe to the SheetSteps assistant and describe how your columns are arranged.