Overflow

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I get an "Overflow" error when i try to do simple division. Is there any way
to troubleshoot the error?
 
In
Chris said:
I get an "Overflow" error when i try to do simple division. Is there
any way to troubleshoot the error?

Please show the line of code, and state the data types of all variables
involved in the operation.
 
Be sure to avoid division by zero. It can cause Overflow errors in queries.

iif(x = 0, 0, y/x)


HTH,
 
Back
Top