Help on autofilter issue

Gringoire

Board Regular
Joined
Nov 18, 2016
Messages
71
Office Version
  1. 365
Platform
  1. Windows
Hello friends, I have a strange issue with autofilter: in the picture below you can see a part of a large table where I need to filter on the column 6 using a wildcard.
Everything goes fine with letters but not with numbers:

this code works perfectly:
VBA Code:
ActiveSheet.ListObjects("TabRawData").Range.AutoFilter Field:=6, Criteria1:="TV*", Operator:=xlFilterValues

This code instead does not catch any row:
VBA Code:
ActiveSheet.ListObjects("TabRawData").Range.AutoFilter Field:=6, Criteria1:="23*", Operator:=xlFilterValues

I tested the code with number formatted as numbers or text but it makes no difference...

1697019062280.png


Any hint?
Thank you in advance.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
I finally "solved" with this workaround (being sure that this value cannot be less than 180000):

VBA Code:
ActiveSheet.ListObjects("TabRawData").Range.AutoFilter Field:=6, Criteria1:=">180000", Operator:=xlFilterValues

thanks anyway.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,124
Messages
6,123,187
Members
449,090
Latest member
bes000

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