Conditional formatting for training date reminders

Tom Carron

New Member
Joined
Dec 16, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I have a list of dates that training was completed (so these are dates in the past), and this particular training should be refreshed every 12 months. What I'd like to know is can I use conditional formatting to change the colour of the date (to orange for example) 11 months after the training date to remind that it is coming up to refresh time, and then to red 12 months after the training date to show that a refresh is overdue?
 

Attachments

  • Screenshot 2020-12-16 075654.jpg
    Screenshot 2020-12-16 075654.jpg
    44.7 KB · Views: 8

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try the following applied to the range starting in C2

For red :
Excel Formula:
= TODAY()>(year($c2)+1,month($c2),day($c2)
For orange
Excel Formula:
=TODAY()>edate($c2,11)
 
Upvote 0
Try the following applied to the range starting in C2

For red :
Excel Formula:
= TODAY()>(year($c2)+1,month($c2),day($c2)
For orange
Excel Formula:
=TODAY()>edate($c2,11)
Thanks arthurbr, the orange one works great, but the red it won't accept. Could you just check the formula as I'm not great on resolving formula issues. I've tried adding an extra closed bracket etc. but can't fix it.
 
Upvote 0
Welcome to the MrExcel board!

Try these

Tom Carron.xlsm
C
1ARG Training
2
39/06/2020
4
5
65/12/2019
7
830/12/2019
931/01/2020
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C2:C9Expression=AND(C2<>"",TODAY()>EDATE(C2,12))textNO
C2:C9Expression=AND(C2<>"",TODAY()>EDATE(C2,11))textNO
 
Upvote 0
Solution
Welcome to the MrExcel board!

Try these

Tom Carron.xlsm
C
1ARG Training
2
39/06/2020
4
5
65/12/2019
7
830/12/2019
931/01/2020
Sheet1
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C2:C9Expression=AND(C2<>"",TODAY()>EDATE(C2,12))textNO
C2:C9Expression=AND(C2<>"",TODAY()>EDATE(C2,11))textNO
Thanks Pete, that sorted it. Appreciate your help.
 
Upvote 0
You're welcome. Thanks for the confirmation. :)
 
Upvote 0

Forum statistics

Threads
1,214,813
Messages
6,121,706
Members
449,048
Latest member
81jamesacct

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