Conditional formatting with dates

Brentsa

Board Regular
Joined
Oct 3, 2013
Messages
118
Office Version
  1. 365
Platform
  1. Windows
Good day,

I have two columns with dates:
Column E: Date when person was trained: ie 01 Jan 2019
Column F: Due Date (when person must be trained again - a year from Column E: used this formula: =DATE(YEAR(E4)+1,MONTH(E4),DAY(E4))

I need a formula that will be able to say if Column F is Overdue, Outstanding or Current.

Overdue is if Column F is past Today's date
Outstanding is if Column F has not passed but still needs to be done this year
Current is if Column F is a date that is the following year

I got as far as =IF(ISBLANK(F4),"",IF(F4<TODAY(),"Overdue","Outstanding")) but have no idea to get the formula to give me "Current" result
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try this.

=IF(ISBLANK(F4),"",IF(F4<TODAY(),"Overdue",IF(YEAR(F4)=YEAR(TODAY()),"Outstanding","Current")))
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,184
Members
448,949
Latest member
keycalinc

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