Query Error "OVERFLOW"

J

jelena

Please Help I am going crazy.
I have a query calculating simple arithmetic calculations
and now all of a sudden when I run the querry I get a
message with the following:
"Overflow"

and that is it.
the db is 26 MB. When I delete columns in the query it
runs again, but this is not practical. I compacted and
repaired the db.
DOES ANYONE KNOW WHY THIS IS HAPPENING?
 
T

Timothy C. Doherty

Overflow typically occurs when an integer data type is assigned a value
larger than the 2-byte data type can store (values can range from -32,768 to
32,767). Try converting your source fieldsto Long Integer data type, or
explicitly type-ing your calculated result using CLng(<expression>).
 

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

Similar Threads

Access Overflow error 3
"Overflow" error on SELECT query 5
Numeric Overflow Error 4
Overflow 3
What is does "overflow" warning mean when trying to run a report? 2
Overflow 2
Module Help 5
Overflow message 4

Top