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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
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,972
Messages
6,128,030
Members
449,414
Latest member
sameri

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