Conditional formatting help please

garretttpe

New Member
Joined
Feb 15, 2015
Messages
26
Hi All

cell G6 = calibration date 6/6/2014
cell h6 = calibration due date 6/6/2015

I need H6 to turn grey when 30 days prior to it
I need H6 to turn yellow 14 days prior to it
I need H6 to turn red on the due date.

I have tried many different things using the =now()+30 and different combination and I am unable to get it to work.
I am using excel 2010.

thank you all for any help in this

Larry
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Oops made a mistake!

Code:
[TABLE="width: 97"]
<tbody>[TR]
[TD]=H6 < =TODAY()[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]=(H6-14) < TODAY()[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]=(H6-30) < TODAY()[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
Try

=H6 < =TODAY()
=(H6+14) < TODAY()
=(H6+30) < TODAY()
 
Last edited:
Upvote 0
Thanks
it is working fine except I would like this to happen to all cells in column H, when I try to use =(H6:h36-30)<today() it does not work. Inputing what I need in each cell will take me forever. is there a way to make each cell in the row do what I need above?
 
Upvote 0
my last post got cut off

how do I copythe conditional format above to work on all cells in Column H, I tried doing =(h6:h36-30)<today() but that does not work. typing in the formula in every cell will take for ever.

thanks
 
Upvote 0

Forum statistics

Threads
1,203,631
Messages
6,056,432
Members
444,864
Latest member
Thundama

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