Thread
:
Copy/Paste
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett[_4_]
external usenet poster
Posts: 2,337
Copy/Paste
try
with worksheets("Old Data")
Set rng = ActiveSheet.AutoFilter.Range
rng.Copy .Range("A" & .cells(rows.count,"a").end(xlup).row+1)
end with
--
Don Guillett
SalesAid Software
"scrabtree23" wrote in message
...
The following code has worked good for me in the past:
Dim rng As Range
Set rng = ActiveSheet.AutoFilter.Range
rng.Copy Destination:=Worksheets("Old Data").Range("A1")
Sheets("Old Data").Range("A1").EntireRow.Delete Shift:=xlUp
However, I now want it to "Insert the Copied Data" at the destination and
shift the existing data down.
The code currently allows the data to be pasted over any existing data???
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]