I am working on a spreadsheet to track overdue invoices. I have invoice dates in column B, some cells in column B are blank as they have not been invoiced. Column C includes the dates when the invoices were paid. I am trying to use conditional formatting to highlight cells in column C where the adjacent date in column B exceeds 30 days. If the invoice has been paid and there is a paid date in column C, there should be no highlighting. Both columns B and C are formatted as dates.
I have tried multiple formulas to achieve this:
AND($B2<TODAY()-30,ISBLANK($C3)
IF(ISBLANK($A2),"",DATEDIF($A2,TODAY(),"D")>=30)
I'm getting random cell highlights in column C where dates in column B are empty. I've also noticed instances where dates in column B far exceed 30 days but are not highlighted.
Any input would be helpful.
Chris
I have tried multiple formulas to achieve this:
AND($B2<TODAY()-30,ISBLANK($C3)
IF(ISBLANK($A2),"",DATEDIF($A2,TODAY(),"D")>=30)
I'm getting random cell highlights in column C where dates in column B are empty. I've also noticed instances where dates in column B far exceed 30 days but are not highlighted.
Any input would be helpful.
Chris