Hi
I am trying to copy data from three columns and paste to another sheet in same workbook. Keep getting a "Run-time error' 1004"
Not sure why this is happening. Note: i am pasting into a table.
Thanks
Rick
I am trying to copy data from three columns and paste to another sheet in same workbook. Keep getting a "Run-time error' 1004"
Not sure why this is happening. Note: i am pasting into a table.
Thanks
Rick
Code:
Sub AmazonData()
With ActiveWorkbook
Sheets("Amazon").Range("D2", Range("D" & Rows.Count).End(xlUp)).Copy Destination:=Sheets("SOURCE").Range("C" & Rows.Count).End(xlUp).Offset(1)
Sheets("Amazon").Range("G2", Range("G" & Rows.Count).End(xlUp)).Copy Destination:=Sheets("SOURCE").Range("B" & Rows.Count).End(xlUp).Offset(1)
Sheets("Amazon").Range("L2", Range("L" & Rows.Count).End(xlUp)).Copy Destination:=Sheets("SOURCE").Range("D" & Rows.Count).End(xlUp).Offset(1)
End With
End Sub