I am using the following code in a procedure which is accomplishing what I need, but I was wondering if when the AutoFilter pastes the visible rows to another destination (In a tab I call Clipboard), it paste values. Is there a way to modify the code to make the paste special, with formulas? I have tried adding the standard ".PasteSpecial Paste:=xlPasteFormulas" after Range("A1"), but it blows up the code.
Thanks for any help or education you can lend me.
Code:
With ActiveSheet.Range(Cells(1, 1), Cells(Cells(Rows.Count, 1).End(xlUp).Row, LastCol + 1))
.AutoFilter Field:=2, Criteria1:=StoredArrayString, Operator:=xlFilterValues
.SpecialCells(xlCellTypeVisible).Copy Destination:=Sheets("Clip Board").Range("A1")
End With
Thanks for any help or education you can lend me.