VBA to Filter Before a Date using Formula

SanjayGMusafir

Well-known Member
Joined
Sep 7, 2018
Messages
1,445
Office Version
  1. 2021
Platform
  1. MacOS
Hi Experts

Got another problem to resolve

I want to filter my records for dates before 10 yrs from today. So I have written following code, which is not working. There must be some technical thing, I'm missing upon.

Further, my system use date as dd/mm/yyyy

Please help

Thanks

Code:
ActiveSheet.ListObjects("Clients").Range.AutoFilter Field:=3, Criteria1:= _
        "<=" & "[Today()-3650]"
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi
I am not expert :) But see if this can help you out:
Code:
ActiveSheet.ListObjects("Clients").Range.AutoFilter Field:=3, Criteria1:="<=" & Format(DateAdd("y", -3650, Now()), "dd/mm/yyyy")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,047
Messages
6,122,858
Members
449,096
Latest member
Erald

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