I have the following code which copys the active row and pastes it to the next available row in another worksheet.
How do I modify the code to copy the range A2:AB2 (rather than the active row) to another existing workbook stored in a particular folder.
Thanks
Code:
ActiveCell.EntireRow.Copy Destination:=Sheets("Archive").Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues
How do I modify the code to copy the range A2:AB2 (rather than the active row) to another existing workbook stored in a particular folder.
Thanks