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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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,214,653
Messages
6,120,757
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