Conditional Formatting Dependent on Dates

emw2368

New Member
Joined
Dec 20, 2018
Messages
8
Hi,

I have 2 date columns in my worksheet, E and F. If 14 days have passed from the date entered in column E and there is no value in column F I would like the cells in column F to turn red. I tried to use the below formula but it doesn't seem to be working. Also when I click and drag the formating to cells below it retains the row number rather than updating to it's own row number


=AND(F2="",E2<today()-14)

Any help is much appeciated.

Thanks!

Edit:
Formula is =AND(F2="",E2< TODAY()-14)
</today()-14)
 
Last edited by a moderator:

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Are you sure that the dates in col E are real dates?
Select col E & format as general, what do you see?
 
Upvote 0
Are you sure that the dates in col E are real dates?
Select col E & format as general, what do you see?

Hi,

The dates revert to numbers when I do this. The formula is working, but it is also filling F blank for blank rows. This is problematic as we use this worksheet to track cases(we expect 2000+ for 2019) so I will have to apply this formula to 2000+ cellsand then fill them out as time goes by. I’d like the cells to be white until thereis a case attached to that cell row. The case number is in column B.
Is there a formula that will turn F red if blank when todayis >14days from row E, but only when there is a value in column B?


 
Upvote 0
Try
=AND(B2<>"",F2="",E2< TODAY()-14)
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,263
Members
452,627
Latest member
KitkatToby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top