macro message

D

dianed

Not sure if this is a macro problem or not. When running
a macro, a message box appears "overflow". What does this
mean and how can it be corrected?

Thank you
 
K

Ken Snell

Likely some action in your macro is trying to put a value into a place that
isn't big enough for it (such as trying to put a number larger than 32768
into an integer field or variable.

Or you're trying to divide by zero.

Or some other error.
 
Top