Google-sheets – How to change row colour depending on due date in a cell

conditional formattingformulasgoogle sheets

I need a whole row to be red if the date in column C is older than today()

I have tried this basic formula

=C2:C<TODAY()

but that makes every row that is still empty also red.

So how to add basically "if a cell in column C is empty, do nothing"?
I can go around it by adding another condition that says when it's empty, make it white and put it above the red condition but I want to avoid unnecessary complications.

Best Answer

=AND($C1<>""; $C1 < TODAY())

0