I'm interested in copying a large range from one workbook to another. Currently, I am using the copy and paste functions. The macro worked on smaller files, but now I have a very large file and I am running into an error at ActiveSheet.Paste
. I think it is because what I am copying is too large for the clipboard. Does that sound right? If so, I would like to avoid the clipboard all together. Here is my code currently.
DeptReceivedWB.Sheets(1).Cells(1, 1).CurrentRegion.Copy
APPS_AuditWB.Activate
APPS_AuditWB.Sheets(3).Select
ActiveSheet.Cells(i + 1, 1).Select
ActiveSheet.Paste
ActiveSheet.Cells(i + 1, 1).EntireRow.Delete