L
L. Howard
Instead of this which does the job but leaves the range on sheet 2 selected:
Sheets("Sheet1").Range("A2:F2").Copy
Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
I'm trying to do the code line where:
(Sheet2)Range = (sheet1)Range and does the offset & paste special also
Thanks.
Howard
Sheets("Sheet1").Range("A2:F2").Copy
Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp)(2).PasteSpecial Paste:=xlPasteValues
I'm trying to do the code line where:
(Sheet2)Range = (sheet1)Range and does the offset & paste special also
Thanks.
Howard