View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Copy & Paste+Offset

Hi Ronald,

Try:

Sub Tester()
Dim Rng As Range
Application.ScreenUpdating = False
With Sheets("Sheet2")
If Not IsEmpty(.Range("A1")) Then
Set Rng = .Cells(Rows.Count, 1).End(xlUp)(2)
Else
Set Rng = .Range("A1")
End If
End With

Sheets("Sheet1").Range("A1:J1").Copy
Rng.PasteSpecial Paste:=xlValues

With Application
.CutCopyMode = False
.ScreenUpdating = False
End With
End Sub


---
Regards,
Norman



"Ronald Cayne" wrote in message
...
Want to copy data in Sheet1 a1:j1 Copy and paste Values
to Sheet 2 A1:j1


When Macro is rerun 1 want to copy the data Sheet1:a1:j1
to Sheet 2!a2:j2(Values only)

Each time I want to add the data from line 1 sheet 1 to the next
unoccupied line in Sheet 2

Ron