Conditional Format based on Date

ckybam451

New Member
Joined
Dec 4, 2008
Messages
12
Hello,

I'm attempting to Conditionally format a cell with the following rule:

If today's date is greater than or equal to the date in H3 + 10 (i.e. August 5th + 10 = August 15th), the cell will be formatted

What I currently have and is not working.

=IF(TODAY()>(H3+10))
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You don't need to use an IF.
Just create an expression that will return TRUE or FALSE, like this:
Code:
[COLOR=#333333]=TODAY()>=(H3+10)[/COLOR]
 
Upvote 0
You are welcome.

You *could* use an IF statement, but then you just need to complete all the arguments, i.e.
Code:
[COLOR=#333333]=IF(TODAY()>(H3+10),TRUE,FALSE)[/COLOR]
but as you see, it isn't necessary to do so.
Just create an equality or inequality that will evaluate to True or False.
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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