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

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
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,216,096
Messages
6,128,809
Members
449,468
Latest member
AGreen17

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