Conditional Formatting for Date and Time in separate cells

LibbyMcD

New Member
Joined
Jul 25, 2018
Messages
1
I would like to use conditional formatting to highlight cells that have an actual date and time after the originally scheduled date and time.

For example, column 4 row 3, the delivery time is 18 minutes late - I'd like to highlight that. And in row 4, it's a day late, that would also need to be highlighted.

I'm having trouble finding anything online that would help with this since it's not just date, and not just time, and they are in separate columns. Any help would be much much much appreciated! :)

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Sched Date[/TD]
[TD]Sched Time[/TD]
[TD]Actual Date[/TD]
[TD]Actual Time[/TD]
[/TR]
[TR]
[TD]7/25/18[/TD]
[TD]1:00 pm[/TD]
[TD]7/25/18[/TD]
[TD]12:55 pm[/TD]
[/TR]
[TR]
[TD]7/25/18[/TD]
[TD]1:00 pm[/TD]
[TD]7/25/18[/TD]
[TD]1:18 pm[/TD]
[/TR]
[TR]
[TD]7/24/18[/TD]
[TD]10:30 am[/TD]
[TD]7/25/18[/TD]
[TD]9:00 am[/TD]
[/TR]
[TR]
[TD]7/24/18[/TD]
[TD]1:00 pm[/TD]
[TD]7/24/18[/TD]
[TD]11:53 am[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Welcome to the Board!

Let's say that you grid above is in the range A1:D5.
Then select cells C2:D2, and enter this Conditional Formatting formula:
Code:
=or($C2>$A2,and($A2=$C2,$D2>$B2))
and then choose your highlighting color option.

I think this should do what you want.
 
Upvote 0

Forum statistics

Threads
1,225,763
Messages
6,186,896
Members
453,384
Latest member
BigShanny

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