Conditional Formatting based on dates and days passed

R4nd0m4ng3l

New Member
Joined
Sep 1, 2014
Messages
4
Hi,

I am trying to add conditional formatting to my spreadsheet. The sheet records when I receive applications and how long since I received them. I have a column called 'Date Received' and want to add formatting so that the cell changes colour based on how long ago the date is. The parameters I need and below, any help would be great! Thanks in advance!

If the date is 0-28 days ago - Cell is Green
If the date is 29-42 days ago - Cell is Yellow
If the date if 43-56 days ago - Cell is Orange
If the date is over 57 days ago - Cell is Red
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Try (untested)

4 Conditions
In this order

=(A1 < TODAY()-57)
format Red

=(AND(A1 < =TODAY()-43,A1 > =TODAY()-56))
format Orange

=(AND(A1 < =TODAY()-29,A1 > =TODAY()-42))
format Yellow

=(AND(A1 < =TODAY()-0,A1 > =TODAY()-28))
format Red
 
Upvote 0
Works fine for me.
Remove the spaces before/after the carat signs.

Clear any conditional formulas you have for A1
Select A1
Enter the 4 conditional formulas for A1
in A2 enter =TODAY()-A3

in A3 enter 58
A1 turns red its greater than 57 days

in A3 enter 44
A1 turns orange its between 43 and 56 days

in A3 enter 31
A1 turns yellow its between 29 and 42 days

in A3 enter 17
A1 turns green its between 0 and 28 days
 
Upvote 0

Forum statistics

Threads
1,214,793
Messages
6,121,614
Members
449,039
Latest member
Mbone Mathonsi

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