Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
I have written some VBA code in excel 2000 which imports one of 30 text
files, copies an area 1 column by 78 rows onto my master data consolidation sheet, closes the imported sheet then repeats with the next one. All works fine, except that each time excel puts up a dialog box asking me if I want to keep the large amount of data on the clipboard -(so I have to answer "no" 30 times...) Is there a way to suppress this message? Is there something like: Activesheet.Paste SuppressAnnoyingMessageAboutClipboard:=True ? Thanks code within the loop is : Windows(sourcefile).Activate Range("B2:B79").Select Selection.Copy Windows("test.xls").Activate copydest = "data" + mydate 'copydest is one of several named ranges, eg data01, data02, data03... Application.Goto Reference:=copydest ActiveSheet.Paste 'message appears after here Range("A1").Select Windows(sourcefile).Activate ActiveWorkbook.Close SaveChanges:=False |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why do I get the message "cannot empty clipboard" in Excel 2007? | Excel Discussion (Misc queries) | |||
Macro stops with "Large Amount of Data" Message | Excel Discussion (Misc queries) | |||
How to disable "There is a large amount of data on the clipboard..." | Excel Discussion (Misc queries) | |||
how can I avoid "server busy" message during ole automation | Excel Discussion (Misc queries) | |||
Subject: Not showing "info on clipboard" message | Excel Programming |