访问 2000 停止自动舍入
我正在使用别人设计的桌子。该字段被指定为数字。我想输入一个小数点后一位的 2 位数字。 [例如:27.5] 该字段会自动四舍五入到个位数,十分位为 0。 (27.0) 字段大小并不重要,我都尝试过。我输入了格式和输入掩码,但它仍然自动舍入。
I am working with a table that someone else designed. The field is designated as a number. I want to enter a 2 digit number with one decimal place. [Ex: 27.5] The field is automatically rounding to the ones place with a 0 in the tenths place. (27.0) The field size doesn't matter, I have tried them all. I put in formatting and an input mask, however it still automatically rounds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查表定义。
如果它是数字,则可以是整数(字节、整数、长整数)类型或实数(单精度、双精度等)类型。整数将始终四舍五入。另外,如果您使用的是实数类型,则 Decimal 选项也可能会产生影响
Check the table definition.
If it's a Number, it can be an Integer (Byte, Integer, Long Integer) type or a Real (Single, Double, etc.) The integers will always round. Also, if you are using a real type, the Decimal option may have an effect as well