VBA Error Code (1 Viewer)

martynhale

New member
Local time
Today, 12:13
Joined
Jan 26, 2000
Messages
5
I've written a report with some additional code which draws circles arround key statistics. I'm getting a run-time error "overflow" half-way through the report.

I can't find information on what this error means, or how to fix it.

Can anyone help please
 

BarkerD

Registered User.
Local time
Today, 12:13
Joined
Dec 1, 1999
Messages
106
Overflow is caused by variables being assigned values that are out of range. For example, an integer cannot accept a value greater than 32,767. If you try to assign it a value greater than this, it will cause the Overflow error.

Check your code and see what values are being used in each variable. I use breakpoints in my code, and step through by using the F8 button.

Good Luck
Duane Barker
 

Users who are viewing this thread

Top Bottom