i'm trying to get the decimal number to NOT round up

T

thehuman

i need to input decimal number. (1.5) it keeps rounding up to 2. i fixed
the decminal to 1 on the table, query, and form. i dont not want to number
to round up at all. what am i missing.
 
A

Al Camp

What data type is the field. It should be Single or Double to handle
decimals. Not Byte or Integer or Long.
 
O

Ofer

The field type in the table is probably set to Long type this type round the
number, set the field type to double
 
Top