how to filter number field using wildcard with VBA

MSMM

New Member
Joined
Jun 3, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
Hi Mr Excel,

I have a data table field with partial texts and numbers stored in it.
I would like to filter using wildcard but it only works on text field.
Would like to tap your expertise.
Many thanks.

MSMM

ESN field
123456
554569

775566
ac4567
661177
efg786

Response1 = 456

Sub FilterESN()

Dim Show_Box1 As Boolean
Dim Response1 As String

Sheets("Current").Select
Show_Box1 = True
Response1 = InputBox("Enter the ESN number.", _
"Number Entry", , 250, 75)

If Response1 = "" Then
Show_Box1 = False
End If

ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=32, Criteria1:="=*" & Response1 & "*"

End Sub
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi & welcome to MrExcel.
As far as I know you cannot use wildcards with numbers in the autofilter.

Could you convert your numbers to text?
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,969
Members
449,059
Latest member
oculus

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