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)