Hi
I have Data From the Data i want to pull Product Wise Data Product mention in Column C in Data Sheet. I use Advanced filter & i use macro for this.Please tell me any other way to do this & also i want result in New Work book please tell me how to do this
I have Data From the Data i want to pull Product Wise Data Product mention in Column C in Data Sheet. I use Advanced filter & i use macro for this.Please tell me any other way to do this & also i want result in New Work book please tell me how to do this
Code:
Sub Macro1()
'
' Macro1 Macro
'
'
Sheets("Data").Columns("A:D").AdvancedFilter Action:=xlFilterCopy, _
CriteriaRange:=Sheets("Data").Range("F1:F2"), CopyToRange:=Range( _
"Cookies!Extract"), Unique:=False
Sheets("Bread").Select
Range("F3").Select
Sheets("Data").Columns("A:D").AdvancedFilter Action:=xlFilterCopy, _
CriteriaRange:=Sheets("Data").Range("G1:G2"), CopyToRange:=Range( _
"Bread!Extract"), Unique:=False
Sheets("Milk").Select
Sheets("Data").Columns("A:D").AdvancedFilter Action:=xlFilterCopy, _
CriteriaRange:=Sheets("Data").Range("H1:H2"), CopyToRange:=Range("A1:D1") _
, Unique:=False
End Sub