How do I stop automatic rounding of numbers?

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

Guest

I have created a form to enter data. My problem is that the numbers keep rounding even though I have changed the property of the control to 2 decimal places and have tried standard and fixed formats. How do I stop access from rounding to the nearest whole number?
 
-----Original Message-----
I have created a form to enter data. My problem is that
the numbers keep rounding even though I have changed the
property of the control to 2 decimal places and have tried
standard and fixed formats. How do I stop access from
rounding to the nearest whole number?
Check the field(s) in the underlying table that the Number
property is Single, Double, Decimal or Currency. Long
Integer and Integer are just that -- no decimal places.

Roxie Aho
roxiea at usinternet.com
 
Back
Top