I am trying to autofilter a large number of rows and then copy the
result of the filtering to a new range. I assumed that the following
code would do this nicely, but it doesn't.
It wants me to specify a range of cell equal to that resulting from
the filter operation rather than just the first cell where i want
the extracted info to start. Is there a way round this?
Sub Macro2()
Range("A1").CurrentRegion.AutoFilter _
Field:=3, Criteria1:="25.0000"
ActiveSheet.Cells.SpecialCells(xlCellTypeVisible).Rows.Copy _
Destination:=Range("AA2")
End Sub