Numeric field overflow error

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

Guest

Hi,

When I tried to run a macro to append data, it gave me this error.

Numeric field overflow.

What is this error and what to do to resolve it? Thanks.
 
You're trying to put too big a number for the data type of the field.

For example, Integers can only be values between -32,768 and 32,767. If you
try to put a value of 32,768 into an Integer field, you'll get an overflow.
 
Back
Top