conditional formatting: IF cell R2 is past 4/15/2017 then turn red.
...so for every cell I will have to create a separate condition using individual dates.
gowflow
please post this workbook as it is not conventional dates to find a workaround
gowflow
Shums Faruk
Also which rows and columns should be turned Red, if R2 is past 15?
Just add another Conditional formatting like below image beside your existing: See attached, I have changed values to check. You can turn back to original ssblue_Time-Keeping.xlsx
I guess that would work. What I am trying to do is highlight in RED when a day is in the past. I guess I should have just said that in the beginning and let you tell me the best way to do it.
Shums Faruk
Just change below formula in Conditional Formatting:
=IF(LEFT(D4,2)>TEXT(TODAY(),"dd"),TRUE,FALSE)
to
=IF(LEFT(D4,2)<TEXT(TODAY(),"dd"),TRUE,FALSE)
Use below formula:
Open in new window