如何计算 SharePoint 计算字段中的数字是小数还是整数?

发布于 2024-12-10 03:16:25 字数 66 浏览 3 评论 0原文

我正在尝试计算 SharePoint 计算字段中的数字是整数还是小数,以便我可以确定该项目是否已发布。有人可以帮忙吗?

I'm trying to calculate whether a number is a whole number or a decimal in a SharePoint calculated field so that i can determine whether the item is published or not. Can anyone assist?

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

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

发布评论

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

评论(1

帅气尐潴 2024-12-17 03:16:25
=IF(CEILING(Version,1)-Version>0, "Draft", "Published")

CEILING(数字,重要性) 函数 返回从零向上舍入到最接近的有效倍数的数字。

示例:

  • 草稿 - CEILING(1.5,1) - 1.5 = 2 - 1.5 = 0.5
  • 已发布 - CEILING(3.0,1) - 3.0 = 3 - 3 = 0
=IF(CEILING(Version,1)-Version>0, "Draft", "Published")

The CEILING(number,significance) function returns number rounded up, away from zero, to the nearest multiple of significance.

Example:

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