Conditional Format to check if Dates are equal to todays date

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have dates with times in Col D2 onwards. I would to know how to set up a conditional format formula to check which dates are the same as todays date

It would be appreciated if someone could kindly assist me
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Try this Conditional Formatting formula:
Excel Formula:
=INT(D2)=TODAY()
 
Upvote 0
Thanks for the help. Formula works perfectly
 
Upvote 0
You are welcome.

The key here is to understand how Excel stores dates & times. Basically, they are really just numbers with special formatting.
Specifically, it is the number of days since 1/0/1900 (you can see this by going to any date cell and changing the format to "General").
Time is just the fractional part of of one day (the decimal piece).

So we can remove the time (the decimal piece) by using the INT function, which just returns the Integer portion of a number (and drops the decimal portion).
 
Upvote 0
Thanks for the explanation. It makes perfect sense
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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