本文介绍了如何将数字四舍五入到最接近的十位?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能标题不是很有启发性.
Probably the title is not very suggestive.
让我用一个例子来解释你.我有:
Let me explain you with an example. I have:
12345.6
2345.1
12345.00000001
我希望将这些数字四舍五入到 12350
.
我怎样才能做到这一点?
I want those numbers to be roundup to 12350
.
How can I do this?
如果可能,我宁愿使用公式而不是 VBA.
If possible, I would rather use formulas instead of VBA.
推荐答案
您也可以使用 CEILING
向上取整为整数或所需的重要倍数
You could also use CEILING
which rounds up to an integer or desired multiple of significance
即=天花板(A1,10)
向上取整为 10 的倍数
ie=CEILING(A1,10)
rounds up to a multiple of 10
12340.0001
将变成 12350
这篇关于如何将数字四舍五入到最接近的十位?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!