enter number into table

R

reidapple

Hi,

how do i enter number that starts with 0 into the table? like a phone number
for example?

thx
 
K

Klatuu

numeric data types do not carry leading zeros or any other formatting
information. You options are to use a text data type or use the Format
function when you present the number to a user.
 
J

John W. Vinson

Hi,

how do i enter number that starts with 0 into the table? like a phone number
for example?

thx

"Numbers" such as telephone numbers or Zip codes are not really numbers; you
won't ever be doing arithmatic operations with them, or incrementing them as
you might do with an invoice number. Use a Text datatype instead of any sort
of Number datatype for them.

Another reason to use text instead of number is that a Number field of the
default Long Integer datatype is limited to be no larger than 2147483647 - so
a phone number in any area code larger than 214 will not fit.
 

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