VBA: Copy All Data Including Filtered Cells From Table

egarcia7

New Member
Joined
Aug 9, 2016
Messages
17
Hello All,

I'm copying information from a table on the server and pasting the data onto another workbook. The problem is the table is always being filtered so when the macro runs it pastes the visible data only and not the entire table.

Any help would be appreciated, thank you in advance,

-E

Code:
Sub Aggergate_to_Master()


Workbooks.Open Filename:= _
        "\\serverlink\Back_Up_Test_Files\Brian_CIP.xlsx"
        Range("Brian").Select
            Range("A11").Activate
                Selection.Copy
            Windows("Andy_Dashboard_CIP.xlsm").Activate
                Sheets("Brian").Select
                    Range("a2").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Windows("Brian_CIP.xlsx").Activate
       Range("A11").Select
         Application.DisplayAlerts = False
           ActiveWindow.Close

End Sub
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Hello All,

Does anyone know the VBA code to copy the whole table andwhen I paste it, all data regardless of hidden or filtered fields will bepasted?

Thanks again,

-E
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,655
Messages
6,120,760
Members
448,991
Latest member
Hanakoro

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