Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个包含来自 SharePoint 人员/组列的信息的集合。到目前为止,我在列中添加了几列感兴趣的列,其中之一是人员/组:
我想做的是从“提名个人”列中获取 DisplayName 并将其添加到同一个集合中。我在尝试不同的方法时遇到了各种问题,现在我想知道完成这项工作的最佳实践是什么。
有人对如何做到这一点有任何建议吗?
您可以使用AddColumns.
AddColumns
1、样本数据:
2.代码:
AddColumns(colTest, "DisplayName", First(ThisRecord.NominatedIndividual).DisplayName, "Email", First(ThisRecord.NominatedIndividual).Mail, "City", First(ThisRecord.NominatedIndividual).City )