Numbers are automatically rounding off

J

jtidwell

When I type in data in my form, the numbers are rounding off like 42.36 will
round off to 42... How do I change this
 
D

Douglas J. Steele

Check the data type of the bound field. If you select Number, the default is
Long Integer, which doesn't support decimals. You need to use a data type
that does support decimals, such as Single, Double or Decimal.
 
Top