Excel 中的舍入函数、工作表函数与 VBA

发布于 2024-07-07 17:28:24 字数 307 浏览 5 评论 0原文

I had an application for returning closest matches to certain values in a large cluster of values( as in my earlier question) and I chose a VBA solution. While in the course of using the said application, I observed that the results for the value of 0.5 were not correct. I had been using the VBA Round function which I found to be returning 0 for 0.5 rounded to integer whereas the worksheet round function returns 1. Strangely, the VBA round function returns 2 for 1.5. I had to substitute the worksheet function in place of the VBA one.

Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

圈圈圆圆圈圈 2024-07-14 17:28:24

这是一个已知问题。 VBA Round() 函数使用银行家舍入,而电子表格单元格函数使用算术舍入。 请在此处查看详细信息:

PRB:VBA 6 和 Excel 电子表格中的舍入函数不同

提出的解决方法微软正在编写一个自定义函数来获得想要的结果。

银行家四舍五入总是将 0.5 舍入到最接近的偶数,并且是会计中的标准,这就是 Excel 如此工作的原因。 算术舍入将 0.5 向上舍入到下一个数字。

It's a known issue. The VBA Round() function uses Banker's rounding while the spreadsheet cell function uses arithmetic rounding. Check the details here:

PRB: Round Function different in VBA 6 and Excel Spreadsheet

The workaround proposed by Microsoft is to write a custom function to get the desired results.

Banker's rounding always rounds 0.5 to the nearest even number and is standard in accounting, which is why Excel works that way. Arithmetic rounding rounds 0.5 up to the next number.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文