Macro Fitter criteria to include two fields

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have a macro the extracts data from Row 6 in col A on sheet "Imported Data" based on a code "DZ" in Col A

I want to include a second field which is in Col B containing "M1"

What I want to achieve it that where DZ appears in Col A and M1 appears in Col B from row 6 onwards, to extract only the data containing these criteria to sheet "extracted Data"

Code:
 Sub Extract_Data()
Sheets("Imported Data").Select
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "A").End(xlUp).Row
With ActiveSheet.Range("A6:R" & Lastrow)
.AutoFilter Field:=1, Criteria1:="DV", Operator:=xlFilterValues
.SpecialCells(xlCellTypeVisible).Copy Worksheets("Extracted Data").Range("A2")
.AutoFilter
End With
End Sub

It would be appreciated if someone could assist me
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi!
This should work for you:


Code:
...
With ActiveSheet.Range("A6:R" & Lastrow)
.AutoFilter Field:=1, Criteria1:="DV", Operator:=xlFilterValues
.AutoFilter Field:=2, Criteria1:="M1", Operator:=xlFilterValues
.SpecialCells(xlCellTypeVisible).Copy Worksheets("Extracted Data").Range("A2")
.AutoFilter
End With
...
 
Last edited:
Upvote 0
Thanks for the help. Code works perfectly
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,253
Members
448,556
Latest member
peterhess2002

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