VBA to filter by a cell reference

sanantonio

Board Regular
Joined
Oct 26, 2021
Messages
124
Office Version
  1. 365
Platform
  1. Windows
Hi,

Have tried searching this and there's a few solutions on here that I'm trying to get to work but I don't seem to be able to.

My code is:

VBA Code:
    ActiveSheet.ListObjects("Table26").Range.AutoFilter Field:=13, Criteria1:= _
        "=Range("AC1").Value", Operator:=xlOr, Criteria2:=" = ""

It is the

VBA Code:
"=Range("AC1").Value"

that doesn't work. Previously the formula looked like this

VBA Code:
    ActiveSheet.ListObjects("Table26").Range.AutoFilter Field:=13, Criteria1:= _
        "=US05", Operator:=xlOr, Criteria2:="="

And this worked fine, I just need the tool to be able to recognize a cell reference instead of US05 so I can have users enter their site designation "US01, US02, etc." and the macro always filter to their specific site.

Could one of you fine folks see where I'm going wrong?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi sanantonio,

maybe

Rich (BB code):
  ActiveSheet.ListObjects("Table26").Range.AutoFilter Field:=13, _
            Criteria1:=Range("AC1").Value, _
            Operator:=xlOr, _
            Criteria2:=" = """

No Formula for Criteria1 and a missing " at the end of Criteria2.

Ciao,
Holger
 
Upvote 0
Solution

Forum statistics

Threads
1,215,208
Messages
6,123,644
Members
449,111
Latest member
ghennedy

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