Forum Discussion
TemiT20
May 12, 2020Copper Contributor
Conditional Formatting if date is past And Cell is Blank
Hello, Am trying to find a formula that works if a date is past today's date and the another cell is blank to highlight the date cell red, until the blank cell is filled.
Claire405
Aug 23, 2024Copper Contributor
Hi bhushan_z
I tried to modify slightly to include 120 days ago but didn't work.
How would I type 'if H4 is older than 120 days AND K4 is blank, flag it'?
Thanks in advance!
Claire
SnowMan55
Aug 25, 2024Bronze Contributor
That depends upon what you mean by "it" when you wrote "flag it". The cell K4? The range H4:K4? The entire row 4? Something else?
I will assume that you meant the range H4:K4 (and the next three rows in my attached example, so, H4:K7).
The following conditional formatting formulas are just some of the ways you can implement that. (Embedded spaces are optional; I include them for improved readability.)
=IF( AND( TODAY() - $H4 > 120, $K4 = "" ), TRUE, FALSE )
=IF( AND( TODAY() - $H4 > 120, $K4 = "" ), 1, 0 )
[But we do not need an explicit IF function; we just need a Boolean (logical) result. So it is common to write the formula as just the comparison(s)...]
=AND( TODAY() - $H4 > 120, $K4 = "" )
=AND( TODAY() - $H4 > 120, ISBLANK($K4) )
=AND( ($H4 + 120) < TODAY(), ISBLANK($K4) )