Copy/paste Filtered range into table VBA

Tdorman

New Member
Joined
Aug 12, 2021
Messages
40
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I am trying to filter data from one sheet and copy/paste that filtered data over into a summary sheet. I have 2 criteria that, if met, need to go into two separate summary tables. I am able to get the data filtered and copied, however, when it pastes into the respective tables, it is overwriting the total row at the bottom of the tables. I need the data that is copied to go into the bottom of the tables, but above the last row of the tables so that the total rows are not affected.

VBA Code:
Option Explicit
Sub FilterAndCopy()

Application.ScreenUpdating = False
Application.EnableEvents = False
Application.Calculation = xlCalculationManual


Dim lngLastRow As Long
Dim col As Integer
Dim ws1 As Worksheet, ws2 As Worksheet

Set ws1 = Sheets("WH Locations")
Set ws2 = Sheets("Summary")

lngLastRow = ws1.Cells(Rows.Count, "H").End(xlUp).Row

With Range("A31", "H" & lngLastRow)
    .AutoFilter
    .AutoFilter Field:=8, Criteria1:="C"
    .Offset(1, 0).Resize(.Rows.Count - 1).Copy Destination:=ws2.ListObjects("Table2")
    .AutoFilter Field:=8, Criteria1:="D"
    .Offset(1, 0).Resize(.Rows.Count - 1).Copy Destination:=ws2.ListObjects("Table3")
    .AutoFilter
End With


Application.ScreenUpdating = True
Application.EnableEvents = True
Application.Calculation = xlCalculationAutomatic

End Sub
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
I need the data that is copied to go into the bottom of the tables, but above the last row of the tables so that the total rows are not affected.
Do you mean the data should be copied to the tables, above the total row and below existing data rows? If so, try this:

VBA Code:
ub FilterAndCopy()

    Application.ScreenUpdating = False
    Application.EnableEvents = False
    Application.Calculation = xlCalculationManual
    
    Dim lngLastRow As Long
    Dim col As Integer
    Dim ws1 As Worksheet, ws2 As Worksheet
    Dim numVisibleRows As Long
    Dim table As ListObject
    
    Set ws1 = Sheets("WH Locations")
    Set ws2 = Sheets("Summary")
    
    lngLastRow = ws1.Cells(Rows.Count, "H").End(xlUp).Row
    
    With Range("A31", "H" & lngLastRow)
        .AutoFilter

        .AutoFilter Field:=8, Criteria1:="C"
        numVisibleRows = .Columns(1).SpecialCells(xlCellTypeVisible).Cells.Count - 1
        Set table = ws2.ListObjects("Table2")        
        table.Resize table.Range.Resize(table.Range.Rows.Count + numVisibleRows)
        .Offset(1, 0).Resize(.Rows.Count - 1).Copy Destination:=table.DataBodyRange.Rows(table.DataBodyRange.Rows.Count + 1 - numVisibleRows)
        
        .AutoFilter Field:=8, Criteria1:="D"
        numVisibleRows = .Columns(1).SpecialCells(xlCellTypeVisible).Cells.Count - 1
        Set table = ws2.ListObjects("Table3")
        table.Resize table.Range.Resize(table.Range.Rows.Count + numVisibleRows)
        .Offset(1, 0).Resize(.Rows.Count - 1).Copy Destination:=table.DataBodyRange.Rows(table.DataBodyRange.Rows.Count + 1 - numVisibleRows)
        
        .AutoFilter
    End With
    
    Application.ScreenUpdating = True
    Application.EnableEvents = True
    Application.Calculation = xlCalculationAutomatic

End Sub
 
Upvote 0
Thank you for your help!

Yes that's what I'm trying to achieve. I am getting an error at

VBA Code:
table.Resize table.Range.Resize(table.Range.Rows.Count + numVisibleRows)

It says Cannot complete operation: A table cannot overlap with a PivotTable report, query results, a table, merged cells, or an xml mapping. I had table 3 below table 2 and also tried moving table 3 to the side of table 2, however, I still received the same error message.
 
Upvote 0
I would need a sample workbook to investigate that error and change the code. If you want to, upload a workbook which reproduces the error to a file sharing site and post the link here.
 
Upvote 0

Forum statistics

Threads
1,214,947
Messages
6,122,413
Members
449,082
Latest member
tish101

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