Formula to find Current/ future date based on specific date given

Aswinraj

Board Regular
Joined
Dec 10, 2015
Messages
65
Hello Friends,


I have column which contains only dates and blanks - based on Date Column it has to provide the information as Current or Future date.


Based on table below,


If Column A is Lesser than or Equal to 30th Sep 2018 then Column B should show as "Current"
If Column A is Greater than 30th Sep 2018 then Column B should show as "Future"
If Column A is Blank then Column B should show as "#N/A"


Column A Column B


30/09/2018 Current
21/08/2018 Current
01/10/2018 Future
#N/A
03/10/2018 Future




With Regards,
​​​​​​​Aswinraj A
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try

Code:
=IF(A1="","#NA",IF(A1<=DATE(2018,9,30),"Current","Future"))
 
Upvote 0

Forum statistics

Threads
1,215,467
Messages
6,124,984
Members
449,201
Latest member
Lunzwe73

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