如何计算 SharePoint 计算字段中的数字是小数还是整数?
我正在尝试计算 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CEILING(数字,重要性)
函数 返回从零向上舍入到最接近的有效倍数的数字。示例:
CEILING(1.5,1) - 1.5 = 2 - 1.5 = 0.5
CEILING(3.0,1) - 3.0 = 3 - 3 = 0
The
CEILING(number,significance)
function returns number rounded up, away from zero, to the nearest multiple of significance.Example:
CEILING(1.5,1) - 1.5 = 2 - 1.5 = 0.5
CEILING(3.0,1) - 3.0 = 3 - 3 = 0