only copy certain columns and rows from filtered range
after i filter a range, I would like only copy the filtered range from columns F:J and only the rows after the header and the first row (i.e., not the first two)...?
presently i'm coping the whole filtered range and the code i'm using to filter (works well):
Code
Set rFilterHeadsar = Range("a1", Range("a1").End(xlToLeft))
With wSheetAR
.AutoFilterMode = False
rFilterHeadsar.AutoFilter
rFilterHeadsar.AutoFilter Field:=1, Criteria1:="=" & strCriteriaAR
Set toCopyRangeAR = rFilterHeadsar.Offset(1, 0).SpecialCells(xlCellTypeVisible)
End With
toCopyRangeAR.Copy Sheets("mm").Range("A25") 'here is where i would like to only copy in columns F:J, rows after first two
...
thank you.