Is there a limit on the number of Excel Rows that VBA can paste into another workbook?

Jdrew

New Member
Joined
Nov 30, 2010
Messages
1
I have written a VB macro that copies rows from four Excel worksheets and pastes them in separate sheets in another workbook. One of the worksheets to be copied has 46K rows. When I paste it, it will only paste about 16K rows. Am I hitting some pasting limit? Operative section of the code looks like this

Set ODC = Worksheets("ODC").Range("A:O")

Workbooks(D003Var).Activate

ODC.Copy

Worksheets("ODC").Range("A1").PasteSpecial Paste:=xlPasteValues
Worksheets("ODC").Range("A1").PasteSpecial Paste:=xlPasteFormats

Workbooks(D003Var).Close SaveChanges:=True
Workbooks(BigD003).Close SaveChanges:=False
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi JDrew welcome to the form,

From you post you are selecting to copy the entire columns A:O which may cause the issue, if the data is only in column A:O you could consider using select.currentregion.copy which would copy only the amount of rows that has the data in them. This may help you get through this procedure.
 
Upvote 0

Forum statistics

Threads
1,215,492
Messages
6,125,116
Members
449,206
Latest member
burgsrus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top