• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Copy Paste to workbook

coolkiran

Member
Hello all

I have 2 workbooks, From my macro file i am trying to open one work book, copy all rows and paste into another workbook.

Current problem is , i have around 100,000 records. Its taking lot of time with current macro. and also screen will freeze. Is there any way to improvize below code.

Code:
totalRow = ActiveSheet.Range("A1048576").End(xlUp).Row
wkb.Sheets("Sheet1").Range("A1:BZ1048576").Value2 = ActiveSheet.Range("A1:AZ" & totalRow).Value2

Note : wkb is destination workbook where i am pasting data..
 
Back
Top