When entering partial numbers they all show up as zero. Does anyone know how to fix this problem? ie. when .33 is entered it rounds to 0. I need the .33 to show up
When entering partial numbers they all show up as zero. Does anyone know how to fix this problem? ie. when .33 is entered it rounds to 0. I need the .33 to show up
It sounds like you are trying to enter values in a field that has a data type that does not allow decimals. Byte, Integer, and Long Integer only allow whole numbers.
You need to choose a data type that allows decimals, like Decimal, Single, Double, or Currency.