vba help - autofilter not working on date column

Mallesh23

Well-known Member
Joined
Feb 4, 2009
Messages
976
Office Version
  1. 2010
Platform
  1. Windows
Hi Team,

I am trying to apply autofilter on date Column.
Unable to autofilter.

Below is my attempted code.


VBA Code:
Sub Date_Filter()

'1) Autofilter not working
ActiveSheet.Range("$B$2:$B$13").AutoFilter Field:=1, Criteria1:=">27/09/2020", Operator:=xlAnd

'2) Autofilter not working
Range("b2").CurrentRegion.AutoFilter Field:=1, Criteria1:=">27/09/2020"

'3) Autofilter not working
    With Range("b2").CurrentRegion
        .AutoFilter Field:=1, Criteria1:=">27/09/2020", Operator:=xlAnd
    End With
    

'3) Below autofilter works. if I put numbers as Criteria.
'Range("b2").CurrentRegion.AutoFilter Field:=1, Criteria1:=">44101"   '">27/09/2020"

End Sub


Below is my data on which I am applying autofilter.

Book2
ABCD
1
2My data
326/09/2020
426/09/2020
526/09/2020
626/09/2020
727/09/2020
828/09/2020
929/09/2020
1030/09/2020
1101/10/2020
1202/10/2020
1303/10/2020
14
Sheet1



Thanks
mg
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Try
VBA Code:
Range("b2").CurrentRegion.AutoFilter Field:=1, Criteria1:=">" & CLng(DateValue("27/09/2020"))
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,485
Members
448,967
Latest member
visheshkotha

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