Filter value from date > 3 months from selected date

Forestq

Active Member
Joined
May 9, 2010
Messages
482
Hi,

I have value as below:
Code:
[TABLE="class: outer_border, width: 500"]
<tbody>[TR]
[TD]column A[/TD]
[TD]column L[/TD]
[/TR]
[TR]
[TD]03/04/2015[/TD]
[TD]01/07/2013[/TD]
[/TR]
[TR]
[TD]03/04/2015[/TD]
[TD]22/12/2014[/TD]
[/TR]
[TR]
[TD]03/04/2015[/TD]
[TD]10/11/2014[/TD]
[/TR]
[TR]
[TD]03/04/2015[/TD]
[TD]06/09/2013[/TD]
[/TR]
[TR]
[TD]03/04/2015[/TD]
[TD]15/08/2014[/TD]
[/TR]
</tbody>[/TABLE]

Now in column AA, I want to add flag "1" when, it have passed over 3 month between date from column A and column L.
In column AB, I want to have also flag, when it have passed over one year, between date from column A and column L.

How to do it? Function DAYS360?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
in VBA, date can be considered as decimal values. for example, 3rd march, 2015 would be 42066, while 3rd June, 2015 would be 42158. simply use if then function and u are good to go
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,982
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