"Overflow" error message

T

Tony

Hi,
I received an "Overflow" error message when someone was
inputting info into my database and then tried to run one
of my reports. What does this mean? How do I correct the
report?

Thanks!
 
J

John Vinson

Hi,
I received an "Overflow" error message when someone was
inputting info into my database and then tried to run one
of my reports. What does this mean? How do I correct the
report?

Thanks!

Overflow means that Access is trying to compute a number bigger than
the datatype can handle - e.g. an Integer greater than 65535 or a Long
Integer greater than two billion odd. This often happens when you try
to divide a large number by a very small one; often it's just an
expression, such as a date, that Access is misinterpreting as a
division.

Try opening the Report's recordsource query in datasheet view. Do you
get the error? Does one field have #Error in it? If so, check how that
field is defined.
 
D

Douglas J. Steele

It usually means you're calculating a value that's too big for the field
type. For instance, you might have declared something as an Integer (which
can only hold values between -32,768 and 32,767), and you're doing
arithmetic that results in a number outside of that range.
 

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