My form is changing the data I entry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My form e changing data e entry.
EX: I entry 44,3 in a control
the access changes to 44
why???
 
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.
 
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.
 
Back
Top