I'm trying to use one Conditional formatting rule that does the following:
- Ignore Blank Cells
- Ignore Cells that do not have a date value
- Highlight Dates that are going to expire in 30 days
So i have a list of dates: 07/25/2021 06/25/2021 05/25/2021 etc...
i used the custom formula under conditional formatting and used the following codes:
=CountIF(A:Z,today()-30)
i also used
=CountIF(A:Z,"<="&today()-30)
both codes highlight blank cells, i tried using the IF statements or IsBlank statements but i don't think i fully understand how those work. because i made a mess.
regardless of what i do, cells that are non-dates and blank cells are highlighted.
i even tried using the the conditional formatting rule, "Format only cells that contain" and i added the following:
Format Only cells with: Cell value - less than or equal to - Today()-30
what do you guys think im doing wrong?