![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
access
HI,i'm trying to have the decimal option on my access how should i have it?
right now whatever number that i enter ,the access will round it up to the higher or lower amount(like:14.56 will show as 15), would you help me how can i have the decimal numbers on my access? |
|
|||
|
Re: access
Check the number type. It sounds like your table has the field defined as
an "integer" (whole number). Regards Jeff Boyce Microsoft Office/Access MVP "Padideh" <Padideh@discussions.microsoft.com> wrote in message news:01782800-C0B5-4CC9-A7DF-71474447E629@microsoft.com... > HI,i'm trying to have the decimal option on my access how should i have > it? > right now whatever number that i enter ,the access will round it up to the > higher or lower amount(like:14.56 will show as 15), > would you help me how can i have the decimal numbers on my access? > |
|
|||
|
Re: access
On Mon, 11 Aug 2008 08:34:19 -0700, Padideh
<Padideh@discussions.microsoft.com> wrote: >HI,i'm trying to have the decimal option on my access how should i have it? >right now whatever number that i enter ,the access will round it up to the >higher or lower amount(like:14.56 will show as 15), >would you help me how can i have the decimal numbers on my access? The default Number datatype (if you don't specify otherwise) is Long Integer; and an Integer is by definition a whole number. There are other types of Number. Open the table in design view and select this field; look at its properties in the box at the lower left. The first box lets you select Integer, Long Integer (whole number again), Single, Double, or Decimal. The three latter will let you enter decimals. Or, if this field refers to money data, consider not using a Number datatype at all, but instead use a Currency datatype. It gives you four (no more, no fewer, though you can set the format to *display* fewer) decimals, and does not have the possible roundoff error problems of the Float or Double datatypes. -- John W. Vinson [MVP] |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|