Macro filter table on dates before cell value

karldugan

New Member
Joined
May 10, 2016
Messages
42
Hi all,

I am trying to get a macro to filter a table for anything before a value in cell C2, but when the macro runs it doesn't filter on anything, even though there are dates before the cell value.

Any help greatly appreciated.
Karl.

Sub Filter_Date()
'
' Macro4 Macro
'

'
ActiveSheet.ListObjects("Matter_List").Range.AutoFilter Field:=9, Criteria1 _
:="<" & Cells(2, 3), Operator:=xlAnd
Range("Matter_List[Bill Month 1]").Select
Selection.ClearContents
ActiveSheet.ListObjects("Matter_List").Range.AutoFilter Field:=9
End Sub
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Are you sure that your values in cell C2 and column 9 are all valid numeric entries, and not text entries?
Note it is easy to check with the ISNUMBER function, i.e. if
=ISNUMBER(C2)
returns FALSE, you have a text entry and not a date one.
Likewise, test out some values in column 9 with the function to make sure that you have valid dates there too.

Also, what is your code supposed to be doing?
Note that it will NOT delete rows of values meeting your criteria, it just clears out the values in the "Bill Month 1" column, but will leave the rows there.
 
Upvote 0
Hi Joe4,

Thanks for responding - yes everything is showing as a number.

Re clearing, thats what I want it to do - The lines are for orders that should have been invoiced but weren't, so I want to clear anything that isdated before the reporting month (which is the value in C2). The lines need to remain so the user is prompted to enter a new date.

Thanks,
Karl.
 
Upvote 0
What happens if you step through your code one line at a time using the F8 key?
You can can to the Macros -> View Macros menu, highlight your Macro name, and click the "Step Into" button".
Then press the F8 key to move one line at a time to see what is happening on your worksheet.
Specifically, you want to see what happens when the first filter is applied and before anything is cleared.
Does it look like it is filtering the correct rows?

If so, continue on by hitting F8 and moving after the "ClearContents" line. Is anything being cleared?

This method of debugging is very good, as you can see exactly what is happening with each step of your code.
Many times, the problem point becomes obvious when you can see exactly what is happening.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

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