Excel VBA runs "painfully" slow to copy filtered and paste

Cakz Primz

Board Regular
Joined
Dec 4, 2016
Messages
102
Office Version
  1. 365
Platform
  1. Windows
Dear All,

I am using Office 365, and I need to filter, copy visible only from one book to another workbook.
The data source is around 35,000 rows, from column A to AK.

With the code below, it runs "painfully" slow to copy the filtered range, visible cell only and paste it onto another workbook.
I need your expertise suggestions to find the solution.

VBA Code:
Sub CopyPaste()
    With Application
    .ScreenUpdating = False
    .Calculation = xlCalculationManual
    .DisplayStatusBar = False
  
    Windows("RFM Log.xlsx").Activate
    Dim wb As Workbook: Set wb = ThisWorkbook
    Dim twb As Workbook
    Dim ws As Worksheet
    Dim tws As Worksheet
    Set wb = Workbooks("RFM.xlsx") 'source workbook
    Set ws = wb.Sheets("RFM - Register") 'source worksheet
    Set twb = Workbooks("PO.xlsb") 'target workbook
    Set tws = twb.Sheets("RFM Reg") 'target worksheet     
    Dim lRow As Long
    lRow = Cells(Rows.Count, 1).End(xlUp).Row

    With ws
    .Range("A2:AK" & lRow).AutoFilter Field:=4, Criteria1:="1", Operator:=xlFilterValues
    .Range("A3:B" & lRow).SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("A3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With
    
    Set rng = tws.Range("D3:D50000")
    With ws
    .Range("D3:D50000").SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("C3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With
    
    With ws
    .Range("H3:J50000").SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("D3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With
    
    With ws
    .Range("N3:Q50000").SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("G3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With
    
    With ws
    .Range("S3:AG50000").SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("K3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With

    With ws
    .Range("AK3:AK50000").SpecialCells(xlCellTypeVisible).Copy
    With tws
    .Range("Z3").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False
    End With
    End With
        
    wb.Close savechanges:=False
    
    .ScreenUpdating = True
    .Calculation = xlCalculationAutomatic
    .DisplayStatusBar = True
    End With
End Sub

I do really hope that someone could help me.
Thank you very much, really appreciate for your time.
 
The source file is RFM.xlsx
The target file is PO.xlsb (where macro should reside in)

Thank you
 
Upvote 0

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
With your source data in your Post #5- I ran your code and then my code. Below my posted code, is a mini sheet of the results from your code and the results from my code. I did not try to replicate your colorful formatting, I only concentrated on getting the correct data on the page. This code should run much quicker since it is using arrays and doing all the work in memory. I also ignored the headers.

VBA Code:
Sub CopyPaste()
    
    Dim arrS, arrD, rng As Range, i As Long, ct As Long, lRow As Long
    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
        .DisplayStatusBar = False
    End With
  
    Windows("RFM Log.xlsx").Activate
    Dim wb As Workbook: Set wb = ThisWorkbook
    Dim twb As Workbook
    Dim ws As Worksheet
    Dim tws As Worksheet
    Set wb = Workbooks("RFM.xlsx") 'source workbook
    Set ws = wb.Sheets("RFM - Register") 'source worksheet
    Set twb = Workbooks("PO.xlsb") 'target workbook
    Set tws = twb.Sheets("RFM Reg") 'target worksheet
    
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    ct = 1
    With ws
        arrS = .Range("A3:AK" & lRow)
        ReDim arrD(1 To UBound(arrS), 1 To 2)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 1)
                arrD(ct, 2) = arrS(i, 2)
                ct = ct + 1
            End If
        Next
    End With
    
    With tws
        .Range("A3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 1)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 4)
                ct = ct + 1
            End If
        Next
        .Range("C3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 3)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 8)
                arrD(ct, 2) = arrS(i, 9)
                arrD(ct, 3) = arrS(i, 10)
                ct = ct + 1
            End If
        Next
        .Range("D3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 4)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 14)
                arrD(ct, 2) = arrS(i, 15)
                arrD(ct, 3) = arrS(i, 16)
                arrD(ct, 4) = arrS(i, 17)
                ct = ct + 1
            End If
        Next
        .Range("G3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 15)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 19)
                arrD(ct, 2) = arrS(i, 20)
                arrD(ct, 3) = arrS(i, 21)
                arrD(ct, 4) = arrS(i, 22)
                arrD(ct, 5) = arrS(i, 23)
                arrD(ct, 6) = arrS(i, 24)
                arrD(ct, 7) = arrS(i, 25)
                arrD(ct, 8) = arrS(i, 26)
                arrD(ct, 9) = arrS(i, 27)
                arrD(ct, 10) = arrS(i, 28)
                arrD(ct, 11) = arrS(i, 29)
                arrD(ct, 12) = arrS(i, 30)
                arrD(ct, 13) = arrS(i, 31)
                arrD(ct, 14) = arrS(i, 32)
                arrD(ct, 15) = arrS(i, 33)
                ct = ct + 1
            End If
        Next
        .Range("K3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 1)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 37)
                ct = ct + 1
            End If
        Next
        .Range("Z3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
    End With
        
    wb.Close savechanges:=False
    With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
        .DisplayStatusBar = True
    End With
    
End Sub

PO.xlsm
ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
2YOUR CODE
320761SITEWINAVINYL TAPE 2" 3M 471 LIGHT BLUETAUFIK ISMAIL#N/ACOMM1/3/2020MAKSIMAN/A#N/A#N/A#N/AN/AN/A#N/A43855CLOSEDN/ACOMPLETED
420771SITELIEVANOPTIC DISTRIBUTION PANEL 12 CORE YUDHI PRATAMA#N/ABSMG1/4/2020HALCOMN/A#N/A#N/A#N/A11642383130983831.01.202043875CLOSEDN/ACOMPLETED
520781SUBCTETIHYTERA HT RADIO NON IS TYPEYUDHI PRATAMA#N/ABSMG1/4/2020SUBCONTN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
620791SITECASH ADVANCESTAMP FOR SUBCONTRACTINGDHITA ROCHADICONSTCONST1/3/2020LOCAL SUPPLIERN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
720801JAKARTARENISTICKER HSSE AWARENESS & TEP GATEWAYIMMANUEL SUEKEN#N/AHSSE1/5/2020REVO PRINT INDONESIAN/A#N/A#N/A#N/A11639554130809121.01.202043867CLOSEDN/ACOMPLETED
8
9
10
11MY CODE
1220761SITEWINAVINYL TAPE 2" 3M 471 LIGHT BLUETAUFIK ISMAIL#N/ACOMM1/3/2020MAKSIMAN/A#N/A#N/A#N/AN/AN/A#N/A43855CLOSEDN/ACOMPLETED
1320771SITELIEVANOPTIC DISTRIBUTION PANEL 12 CORE YUDHI PRATAMA#N/ABSMG1/4/2020HALCOMN/A#N/A#N/A#N/A11642383130983831.01.202043875CLOSEDN/ACOMPLETED
1420781SUBCTETIHYTERA HT RADIO NON IS TYPEYUDHI PRATAMA#N/ABSMG1/4/2020SUBCONTN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
1520791SITECASH ADVANCESTAMP FOR SUBCONTRACTINGDHITA ROCHADICONSTCONST1/3/2020LOCAL SUPPLIERN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
1620801JAKARTARENISTICKER HSSE AWARENESS & TEP GATEWAYIMMANUEL SUEKEN#N/AHSSE1/5/2020REVO PRINT INDONESIAN/A#N/A#N/A#N/A11639554130809121.01.202043867CLOSEDN/ACOMPLETED
17
18
19
20
Results
 
Upvote 0
With your source data in your Post #5- I ran your code and then my code. Below my posted code, is a mini sheet of the results from your code and the results from my code. I did not try to replicate your colorful formatting, I only concentrated on getting the correct data on the page. This code should run much quicker since it is using arrays and doing all the work in memory. I also ignored the headers.
VBA Code:
Sub CopyPaste()
   
    Dim arrS, arrD, rng As Range, i As Long, ct As Long, lRow As Long
    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
        .DisplayStatusBar = False
    End With
 
    Windows("RFM Log.xlsx").Activate
    Dim wb As Workbook: Set wb = ThisWorkbook
    Dim twb As Workbook
    Dim ws As Worksheet
    Dim tws As Worksheet
    Set wb = Workbooks("RFM.xlsx") 'source workbook
    Set ws = wb.Sheets("RFM - Register") 'source worksheet
    Set twb = Workbooks("PO.xlsb") 'target workbook
    Set tws = twb.Sheets("RFM Reg") 'target worksheet
   
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    ct = 1
    With ws
        arrS = .Range("A3:AK" & lRow)
        ReDim arrD(1 To UBound(arrS), 1 To 2)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 1)
                arrD(ct, 2) = arrS(i, 2)
                ct = ct + 1
            End If
        Next
    End With
   
    With tws
        .Range("A3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 1)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 4)
                ct = ct + 1
            End If
        Next
        .Range("C3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 3)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 8)
                arrD(ct, 2) = arrS(i, 9)
                arrD(ct, 3) = arrS(i, 10)
                ct = ct + 1
            End If
        Next
        .Range("D3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 4)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 14)
                arrD(ct, 2) = arrS(i, 15)
                arrD(ct, 3) = arrS(i, 16)
                arrD(ct, 4) = arrS(i, 17)
                ct = ct + 1
            End If
        Next
        .Range("G3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 15)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 19)
                arrD(ct, 2) = arrS(i, 20)
                arrD(ct, 3) = arrS(i, 21)
                arrD(ct, 4) = arrS(i, 22)
                arrD(ct, 5) = arrS(i, 23)
                arrD(ct, 6) = arrS(i, 24)
                arrD(ct, 7) = arrS(i, 25)
                arrD(ct, 8) = arrS(i, 26)
                arrD(ct, 9) = arrS(i, 27)
                arrD(ct, 10) = arrS(i, 28)
                arrD(ct, 11) = arrS(i, 29)
                arrD(ct, 12) = arrS(i, 30)
                arrD(ct, 13) = arrS(i, 31)
                arrD(ct, 14) = arrS(i, 32)
                arrD(ct, 15) = arrS(i, 33)
                ct = ct + 1
            End If
        Next
        .Range("K3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
        ct = 1
        ReDim arrD(1 To UBound(arrS), 1 To 1)
        For i = 1 To UBound(arrS)
            If arrS(i, 4) = 1 Then
                arrD(ct, 1) = arrS(i, 37)
                ct = ct + 1
            End If
        Next
        .Range("Z3").Resize(UBound(arrD, 1), UBound(arrD, 2)) = arrD
    End With
       
    wb.Close savechanges:=False
    With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
        .DisplayStatusBar = True
    End With
   
End Sub

PO.xlsm
ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1
2YOUR CODE
320761SITEWINAVINYL TAPE 2" 3M 471 LIGHT BLUETAUFIK ISMAIL#N/ACOMM1/3/2020MAKSIMAN/A#N/A#N/A#N/AN/AN/A#N/A43855CLOSEDN/ACOMPLETED
420771SITELIEVANOPTIC DISTRIBUTION PANEL 12 CORE YUDHI PRATAMA#N/ABSMG1/4/2020HALCOMN/A#N/A#N/A#N/A11642383130983831.01.202043875CLOSEDN/ACOMPLETED
520781SUBCTETIHYTERA HT RADIO NON IS TYPEYUDHI PRATAMA#N/ABSMG1/4/2020SUBCONTN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
620791SITECASH ADVANCESTAMP FOR SUBCONTRACTINGDHITA ROCHADICONSTCONST1/3/2020LOCAL SUPPLIERN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
720801JAKARTARENISTICKER HSSE AWARENESS & TEP GATEWAYIMMANUEL SUEKEN#N/AHSSE1/5/2020REVO PRINT INDONESIAN/A#N/A#N/A#N/A11639554130809121.01.202043867CLOSEDN/ACOMPLETED
8
9
10
11MY CODE
1220761SITEWINAVINYL TAPE 2" 3M 471 LIGHT BLUETAUFIK ISMAIL#N/ACOMM1/3/2020MAKSIMAN/A#N/A#N/A#N/AN/AN/A#N/A43855CLOSEDN/ACOMPLETED
1320771SITELIEVANOPTIC DISTRIBUTION PANEL 12 CORE YUDHI PRATAMA#N/ABSMG1/4/2020HALCOMN/A#N/A#N/A#N/A11642383130983831.01.202043875CLOSEDN/ACOMPLETED
1420781SUBCTETIHYTERA HT RADIO NON IS TYPEYUDHI PRATAMA#N/ABSMG1/4/2020SUBCONTN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
1520791SITECASH ADVANCESTAMP FOR SUBCONTRACTINGDHITA ROCHADICONSTCONST1/3/2020LOCAL SUPPLIERN/A#N/A#N/A#N/AN/AN/A#N/A43902CLOSEDN/ACOMPLETED
1620801JAKARTARENISTICKER HSSE AWARENESS & TEP GATEWAYIMMANUEL SUEKEN#N/AHSSE1/5/2020REVO PRINT INDONESIAN/A#N/A#N/A#N/A11639554130809121.01.202043867CLOSEDN/ACOMPLETED
17
18
19
20
Results

Dear igold,

Thanks a lot for your kindness and helping hands.
I will try the code and let you know the result very soon.

Again, thank you very much
 
Upvote 0
With your source data in your Post #5- I ran your code and then my code. Below my posted code, is a mini sheet of the results from your code and the results from my code. I did not try to replicate your colorful formatting, I only concentrated on getting the correct data on the page. This code should run much quicker since it is using arrays and doing all the work in memory. I also ignored the headers.
Dear igold,

Thanks a lot for your kindness and helping hands.
I will try the code and let you know the result very soon.

Again, thank you very much
Dear igold,

I run the code, and it gave me an error in this line number 4, as below:

VBA Code:
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    ct = 1
    With ws
        arrS = .Range("A3:AK" & lRow)

Thank you
 
Upvote 0
With your source data in your Post #5- I ran your code and then my code. Below my posted code, is a mini sheet of the results from your code and the results from my code. I did not try to replicate your colorful formatting, I only concentrated on getting the correct data on the page. This code should run much quicker since it is using arrays and doing all the work in memory. I also ignored the headers.

Dear igold,

I run the code, and it gave me an error in this line number 4, as below:

VBA Code:
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    ct = 1
    With ws
        arrS = .Range("A3:AK" & lRow)

Thank you
 

Attachments

  • Untitled.jpg
    Untitled.jpg
    38.4 KB · Views: 12
Upvote 0
I run the code from destination workbook, then it activate the source book but it stop on the line of code as the picture, attached.

Thank you very much
 
Upvote 0
Try adding "ws." to the line as I have done below:

Rich (BB code):
lRow = ws.Cells(Rows.Count, 1).End(xlUp).Row
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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