如何提取小数点右侧的前两位数字?
在此示例中,我尝试从“2330.44”中提取数字“44”。
从原始值中减去截断值“2330”,得到了这种形式的一种形式(见下图 - 单元格引用 I14 保存值“2330.44”)。然而,这不是我想要的。
有没有办法:
A) 删除“0”和“.”从“0.44”开始。
B) 更有效地提取小数点后的前两位数字。
In this example, I am attempting to extract the digits, "44", from "2330.44".
Subtracting the truncated value, "2330", from the original value gives me one form of this (see photo below - Cell reference I14 holds the value, "2330.44"). However, this is not what I am looking for.
Is there a way to either:
A) Remove the "0" and "." from "0.44".
B) Extract first two digits after decimal point more efficiently.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多选项,包括使用
MOD
和TRUNC
:There are many options, including using
MOD
andTRUNC
: