Hi all,
I need to paste unique values (based on multiple criteria) from my data set to another sheet and want to use VBA in order to avoid using array formulas and slowing my file down significantly. I'm not that familiar with using advanced filtering, but that might be the best option, as it is an Excel built-in function? Open to other efficient solutions...
![]()
Sub AdvancedFilter() Sheets("Data").Range("A1:J119").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Sheets("Output").Range("I6:J7"), CopyToRange:=Sheets("Output").Range("F7:F30"), Unique:=True End Sub
Bookmarks