Contains text filter - VBA question

Lef_pl

New Member
Joined
Nov 12, 2013
Messages
15
Hi,

Is there any way to use value from one specified cell to filter column A of the sheet?
Text filters/Contains.

I would really like to have it in VBA.


My macro is very lame.
Code:
Sub Macro7()
'
' Macro7 Macro
'

'
    Columns("A:A").Select
    Selection.AutoFilter
    Range("J3").Select
    Selection.Copy
    ActiveSheet.Range("$A$1:$A$152184").AutoFilter Field:=1, Criteria1:= _
        "=*900*", Operator:=xlAnd
End Sub

Maybe some way to change J3 cell into a range and use it in a filter?

Thanks for any help.
 
Last edited by a moderator:

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You could simply use:
Code:
ActiveSheet.Range("$A$1:$A$152184").AutoFilter Field:=1, Criteria1:= _
        "=*" & Range("J3").Value & "*", Operator:=xlAnd
 
Upvote 0
Glad to help. :)
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,569
Members
449,038
Latest member
Guest1337

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