Set Rng = ActiveSheet.AutoFilter.Range
Rng.Copy
Worksheets("Sheet2").Range("A1").PasteSpecial Paste:=xlPasteValues
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Steve" <(E-Mail Removed)> wrote in message
news:5E54D33F-2DE0-48E4-8D27-(E-Mail Removed)...
> The following code copies filtered data:
>
> Set Rng = ActiveSheet.AutoFilter.Range
> Rng.Copy Destination:=Worksheets("Sheet2").Range("A1")
>
> but copies values and formulae. (e.g. .PasteSpecial xlPasteValues)
>
> How do I modify to the copy only the values
> Thanks!