Disable clipboard warning

tombrown

Board Regular
Joined
Jun 2, 2006
Messages
50
I use a macro to copy & paste data from one file to the other (code below). How do I disable the warning "There is a large amount of information in the clipbopard ..." when the macro closes the file I have copied from?


Code:
    Workbooks.Open Filename:= "C:\A_Work\Aug.xls"
    Sheets("Data").Select
    Range("A1:L999").Select
    Selection.Copy
    Windows("Current Version.xls").Activate
    Sheets("Aug Data").Select
    Range("A1").Select
    ActiveSheet.Paste
    Windows("Aug.xls").Activate
    ActiveWindow.Close (False)
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try this.
Code:
Dim wbThis As Workbook
Dim wbOpen As Workbook

    Application.DisplayAlerts = False
    Set wbThis = ThisWorkbook
    Set wbOpen = Workbooks.Open(Filename:="C:\A_Work\Aug.xls")
    
    wbOpen.Sheets("Data").Range("A1:L999").Copy wbThis.Sheets("Aug Data").Range("A1")
    wbOpen.Close (False)
    Application.DisplayAlerts = True
 
Upvote 0

Forum statistics

Threads
1,225,563
Messages
6,185,708
Members
453,316
Latest member
mani_mech031

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