SharePoint 计算字段是否可以检查其他列是否存在?
我想在 SPSiteDataQuery
中使用 OrderBy
按数据对项目进行排序,但是,包含日期的字段在内容类型之间有所不同。
通过计算字段排序可以解决这个问题吗?我目前正在尝试创建一个计算字段来检查字段是否存在(使用 ISERROR
),如果找到则返回该值,否则返回默认值。或者,也许我可以在父内容类型中创建一个计算字段,然后在子内容类型中覆盖它的公式和字段引用 - 这种多态性会起作用吗?
I want to use OrderBy
in SPSiteDataQuery
to sort items by data, however, the field containing the date differs between the content types.
Can this be solved by sorting with a calculated field? I am currently trying to create a calculated field that checks for existence of a field (using ISERROR
), if it is found it returns the value, otherwise returns a default value. Or perhaps I can create a Calculated field in parent content type, then override it's formula and field references in a child content type - would such polymorphism work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现 - 不,它不能。
As I found out - NO, it can't.