I'm not quite sure how or why, but when I create a new table with a number
field it automatically rounds to the neareast whole number.
How do I disable the autorounding feature?
By choosing a different type of number. The default Number datatype is
a Long Integer - which is, by definition, a whole number.
If you need up to seven decimal places precision, look at the lower
left of the screen with the field selected and choose Single in the
Size box; Double will give you some 14 decimal places.
On the other hand, if this field is for money values or if you can get
by with four, exactly four no more no fewer, decimals - don't us
Number at all; use Currency as the datatype instead. This can be
better for some things since both Single and Double have "roundoff
error" - they're stored as approximations accurate to some seven and
fourteen decimal places respectively.
John W. Vinson[MVP]