为什么Excel中的取模函数返回除数?

发布于 2024-10-22 14:18:46 字数 242 浏览 8 评论 0原文

我有一个 Excel 验证公式,在 Office '03、'07 中运行良好,但在 2010 年失败。他们最近是否更改了 MOD 的定义?

在 03/07 中,以下内容返回零:

=MOD(1, .05)

但是在 2010 年,它返回 .05

据我所知,自从我三年级时了解余数以来,它们并没有改变它们的工作方式。然而,微软可能采取了一定的自由。

I have an Excel validation formula which worked fine in Office '03, '07, but is failing in 2010. Did they change the definition of MOD recently?

In 03/07 the following returns zero:

=MOD(1, .05)

However in 2010 it returns .05.

As far as I can tell they haven't changed how remainders worked since I was in 3rd grade when I learned about them. However, Microsoft may be taking certain liberties.

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

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

发布评论

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

评论(2

花期渐远 2024-10-29 14:18:46

实际上...在Office 2007中它不会返回零,而是-0.000000000000000056(刚刚测试过)。

也许是浮点问题或 Excel 2010 处理浮点的方式发生了变化。

Actually... it does not return zero in Office 2007, but -0.000000000000000056 (just tested).

Maybe it's a floating point issue or the way Excel 2010 handles floating point changed.

白龙吟 2024-10-29 14:18:46

所以我最终决定确定这一点的最佳方法是作弊并执行:

=(1/.05)-(floor(1/.05))

这给了我所需的零。

So I finally decided the best way to determine this was to cheat and do:

=(1/.05)-(floor(1/.05))

That gives me the zero I need.

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