My form is changing the data I entry

F

Felipe

My form e changing data e entry.
EX: I entry 44,3 in a control
the access changes to 44
why???
 
R

Rick B

As posted very frequently in these newsgroups, sound like your field is
defined as an integer. An integer, by definition, is a whole number (no
decimals).

Change your field in your table.
 
D

Douglas J Steele

Assuming that the data type for the field in the underlying table is
Numeric, what's the Field Size?

The default for Numeric is Long Integer, which will exhibit this behaviour
(integers cannot contain fractional values). Change the Field Size to Single
or Double.
 
Top