Large amount of info on the clipboard

L

ledzepe

Hi everybody,

My macro program involves moving large amount of info from one sheet t
another. I keep getting the message that "There is a large amount o
information on the Clipboard..." and is giving me the option to save i
or delete those info. I don't need those info anymore so I just click o
"No".

Is there a way to disable this message via macro or setting i
Excel/Windows
 
T

Trevor Shuttleworth

ledzepe

Application.DisplayAlerts = False
' your code
Application.DisplayAlerts = True

Regards

True
 
D

Dave Peterson

Application.cutcopymode=false

is another way.
Hi everybody,

My macro program involves moving large amount of info from one sheet to
another. I keep getting the message that "There is a large amount of
information on the Clipboard..." and is giving me the option to save it
or delete those info. I don't need those info anymore so I just click on
"No".

Is there a way to disable this message via macro or setting in
Excel/Windows?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top