I have a column called "Credits" on my table ( on my SQL Server), the data type is set to TinyInteger.
So far user has been using this table to enter and edit data.
For 3 years user has been entering number of integer type using the front end that is created using Access form.
Now I need to make small modification where user can enter
number of decimal type like 1.5 instead of 3 like it used to be.
What I did was:
I clicked on my SQL enterprise manager and look for the table where the column "Credits" reside. Clicked on Design View, changed the data type from tinyint to decimal.
After that, I created a new ODBC link, linking the newly modified table to the access form.
When I checked on the data type of the newly modified column using access design view, the datatype become "text" data type.
When I tested on my form, I can enter decimal number but it is rounded up. So If I enter credits 1.50, I would get a result of 2.00 when I view it with my form edit.
The problem is the same when I change the data type into float ( in access this would become "Number"
and I got similar problem.
Is this not a simple modification request? Can anyone send me an input about how can I resolve this problem? Thanks - Alec
So far user has been using this table to enter and edit data.
For 3 years user has been entering number of integer type using the front end that is created using Access form.
Now I need to make small modification where user can enter
number of decimal type like 1.5 instead of 3 like it used to be.
What I did was:
I clicked on my SQL enterprise manager and look for the table where the column "Credits" reside. Clicked on Design View, changed the data type from tinyint to decimal.
After that, I created a new ODBC link, linking the newly modified table to the access form.
When I checked on the data type of the newly modified column using access design view, the datatype become "text" data type.
When I tested on my form, I can enter decimal number but it is rounded up. So If I enter credits 1.50, I would get a result of 2.00 when I view it with my form edit.
The problem is the same when I change the data type into float ( in access this would become "Number"
Is this not a simple modification request? Can anyone send me an input about how can I resolve this problem? Thanks - Alec