VBA - error message "Code excecution has been interupted"

J

Jeff

Hi,

I am running a macro and I get the error message

"Code excecution has been interupted"

This happens every time I run my macro and it stops in different parts of
the program - for no apparent reason. For example here is where it stopped


Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False 'It stopped here
Selection.NumberFormat = "h:mm:ss AM/PM"
End Sub

I just click on the "run" button and the macro continues without a problem.
Does anyone know what is going on and how to fix this?

Thanks for your help.
 
N

Nick Hodge

Jeff

That line of code simply takes Excel out of cut/copy mode. (Stops the
marching ants). There is no specific reason why the code breaks at that
point.

If you try to interact with Excel while code is running or press the esc key
or if the code you are running triggers a event could all be the cause of
code becoming unstable

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
www.nickhodge.co.uk
 

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