Conditional Formatting Due dates

bluenose5709

New Member
Joined
Dec 15, 2012
Messages
23
Office Version
  1. 365
Hi,

Having trawled the internet and indeed this forum I am hoping that someone can help me....

I have a spreadsheet with 2-400 rows. Column A contains dates starting at row 2 (Row 1 has the column title) what i am trying to achieve is apply conditional formatting such that:

1. If the date has already passed shade the row cells Red
2. If the date is within the next 30 days shade shade the row cells Amber
3. If the date is within the next 60 days shade shade the row cells Cream

For all other rows to remain White.

I have tried many formulas using, for example the "TODAY" function but no matter what I apply it does not seem to work as intended.

Any and all help provided would be much appreciated.

Thank you,

Arran
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You will need three Conditional Formatting formulas:

1. Red:
Excel Formula:
=A2 < TODAY()

2. Amber:
Excel Formula:
=AND(A2 >= TODAY(),A2 <= (TODAY()+30))

3. Cream:
Excel Formula:
=AND(A2 > (TODAY()+30),A2 <= (TODAY()+60))

Note that you might have to play around with the ">",">=","<=", and "<" signs a little, depending on which color you want EXACTLY 30 or 60 days to be.
 
Upvote 0
Solution
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,694
Messages
6,126,250
Members
449,305
Latest member
Dalyb2

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