VBA Help - Advanced Filtering

Mattandy55

New Member
Joined
May 27, 2016
Messages
20
Hello, I have the below code where I am trying to advance filter a final output "Motus Raw" worksheet. The process is a user will copy and paste new data and overwrite previous data on the "Motus Raw Data" sheet. Then the criteria I want to advance filter on is in my "lists" sheet. The raw data sheet will have data from A1: CR, with row 1 being headers in my table and it could be different row lengths. Currently, when I run the code below, it seems to function properly except it doesn't seem to be using the criteriaRange it just paste A1:CR to the destWS. Any help would be greatly appreciated. Current code below.



Dim sourceWs As Worksheet
Dim criteriaWs As Worksheet
Dim destWs As Worksheet
Dim criteriaRange As Range
Dim lastRow As Long

' Set references to the worksheets
Set sourceWs = ThisWorkbook.Sheets("Motus Raw Data")
Set criteriaWs = ThisWorkbook.Sheets("Lists")
Set destWs = ThisWorkbook.Sheets("Motus Raw")

' Set the criteria range on the "Lists" sheet
Set criteriaRange = criteriaWs.Range("A1:H1")

' Find the last row of the source data using the table's ListObject
lastRow = sourceWs.ListObjects("Table1").ListRows.Count

' Clear previous filter results in the destination sheet
destWs.Cells.Clear

' Apply the advanced filter using the criteria range
sourceWs.ListObjects("Table1").Range.AdvancedFilter Action:=xlFilterCopy, _
criteriaRange:=criteriaRange, CopyToRange:=destWs.Range("A1"), Unique:=True

Thanks,

Matt
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Set criteriaRange = criteriaWs.Range("A1:H1")
In row 1 are the headings that you are going to use for the filter and in rows 2 onwards the criteria. But you only put A1:H1, if the criteria is in row 2 then it should be:


VBA Code:
Set criteriaRange = criteriaWs.Range("A1:H2")

--------------
Let me know the result and I'll get back to you as soon as I can.
Cordially
Dante Amor
--------------
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,069
Members
449,092
Latest member
ipruravindra

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