formula help for dates that are in date

magimagpie

New Member
Joined
Oct 30, 2018
Messages
7
Any help will be appreciated if you can please.

I have a column of dates, they are yearly courses that people have to undertake. If they don't refresh within the year they are out of date.


Anything out of date goes red using this formula
=NOW()

Anything due to time out within the next 60 days goes amber using this formula
=NOW()+60

I just need something to make them stay green for the rest of the time until they turn amber...
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Do you mean between those two things?
Let's say that the value is in A1. Then you would use a Conditional Formatting formula like:
Code:
=AND(A1 > NOW(),A1 < (NOW()+60))
If that is not what you are after, please provide some different data sample where you show us different values with the different colors that you want.
 
Last edited:
Upvote 0
A1
A2
Staff name
Course expiry date
Sarah Smith
04/11/2019
Sarah Jones
07/09/2017
John Smith
06/06/2018
John Jones
10/11/2018

<tbody>
</tbody>

Here is a basic sample of some of the data I am looking at.

The course expiry date column is where I have green, amber, red. The one's that I would want green are 04/11/2019, the ones that would be red are 07/09/2017 and 06/06/2018. The one that would be amber is 10/11/2018. I've cracked the red and amber but just not the green...

I've used conditional formatting for this column to get dates to go amber and red but can't work out the green...
 
Upvote 0
Are your dates in a mm/dd/yyyy format, or a dd/mm/yyyy format (it is impossible to determine from the sample data given)?

Also, your logic is not quite clear. I believe that is probably because the formula in your original post got truncated, specifically this one here:
Anything out of date goes red using this formula
=NOW()
I suspect that this is the cause of that: https://www.mrexcel.com/forum/about-board/680917-formulas-not-appearing-completely-read.html

Can you re-post that formula, surrounding and > or < signs with spaces, and/or explain the logic?
 
Upvote 0
I got the formula from a lot of googling so suspect it will be my fault that it's wrong. I'm still an excel newbie so any help on what formulas to use would be appreciated. With regards to the date format, I'm using dd/mm/yyy
 
Last edited:
Upvote 0
Can you please do what I asked for in my last reply?
It is hard for us to see what you are doing because it appears that the formula in your original post did not come through correctly (see the comments in my last post).
So can you please try re-posting that formula, noting the tips I provided on how to get it to appear correctly?

Alternatively, you can just explain (in plain English), the three conditions for the three different colors.
 
Upvote 0
The formula =NOW() is what I've been using, it was what I'd found whilst googling. It hasn't truncated, sorry I didn't make this clear.

If I complete a training course today 6th November 2018, I will need to re-take it again by 5th November 2019 to remain in date for my training. Once I have completed the course in 2018, the spreadsheet will be updated with the expiry date 05/11/2019.

I want the cell with the expiry date to stay green using conditional formatting until 5th October 2019. From 6th October 2019 until 5th November 2019 I would like the cell colour to be amber using conditional formatting. I then would like the cell to go red on 6th November 2019 as this would show that the training for said person has expired and they are no longer date.

Does this make sense?
 
Upvote 0
The formula =NOW() is what I've been using, it was what I'd found whilst googling. It hasn't truncated, sorry I didn't make this clear.
Since NOW() has not only a date component, but also a time component, the entry will only ever go red for a brief second time, in which the value equals the date and time of that value. So that formula will not do what you want.

I recommend using the Formula option for your Conditional Formatting. Let's say the expiry date is in cell A2. Then I think maybe this is what you want:
Green: =A2<=TODAY()
Amber: =AND(A2>TODAY(),A2<=(TODAY()+30))
Red: =A2>(TODAY()+30)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,367
Members
449,080
Latest member
Armadillos

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