Macro Fitter criteria to include two fields

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,443
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

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop

CsJHUN

Active Member
Joined
Jan 13, 2015
Messages
360
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
  2. Mobile
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

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,443
Office Version
  1. 2021
Platform
  1. Windows
Thanks for the help. Code works perfectly
 
Upvote 0

Forum statistics

Threads
1,195,939
Messages
6,012,420
Members
441,698
Latest member
DaveTeo

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
Top