Macro stops for no reason

G

Gizmo63

Odd one this:
Excel seems to be getting sensitive when running macros and going on strike
for no reason:)

A number of my users have had their macros code halt and drop into the VBA
editor as if there is a run time error but with no error message.

A line of code highlights as if in debug mode but there is nothing wrong
with the code. F8 steps to the next line and F5 continues processing with no
problems.

The stop point is inconsistent and the stop at commands vary every time.
There appears to be no reason for these breaks and whilst not catastrophic
they are darn irritating.

References are all OK and everyone here is on the same version with all
service updates.

Does anyone have any ideas?

Cheers

Giz
 
N

Nigel

"......but there is nothing wrong with the code." I wonder?

The most common cause is when a named range is set to the same as a sub
name.
 
G

Gizmo63

Nope - no crossovers like that.

The stop point can be anything from:
Completely variable both in code and sub, and I have many users using
identical templates and macros usually with no problems at all.

Thanks for trying - next guess!
 
J

Jim Cone

It might help and certainly won't hurt if you provided more information...
The operating system
The Excel version
How is the code activated
Where is the code located
How large are the modules
Is Option Explicit in use in every module
Is the code in an add-in or regular workbook
Is the VBA project protected
Is Automation in use in the code
Are there error handling routines included in your code
Is the workbook on a network drive or installed on the user machine
Have you ever tried cleaning the code to remove possible corruption
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)



"Gizmo63"
wrote in message
Nope - no crossovers like that.
The stop point can be anything from:
Completely variable both in code and sub, and I have many users using
identical templates and macros usually with no problems at all.
Thanks for trying - next guess!
 
B

bmurphy

Just in case it helps, you might try Rob Bovey's CodeCleaner. I think
I've encountered times when "strange" code behavior went away after
"cleaning".

Good luck,

Brian Murphy
Austin, Texas
 

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