field size

P

puthputh

Hello,

I need to set the field size in a field which's data type is:

-AUTONUMBER
-NUMBER

I've been told it is possible, but I don't know how.

Please help. Thankyou
 
D

Douglas J. Steele

Numeric fields have their size dictated by what type of numeric field they
are (for instance, an Integer is two bytes, and therefore can hold a value
between -32,768 and 32,767, while a Long Integer is four bytes, and can be
between -2,147,483,648 and 2,147,483,647). Autonumbers are Long Integers
(unless you're using a Replication ID Autonumber), and you can't change
anything about them.
 

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