从查找到另一个Sharepoint列表中填充Powerapps中的人员字段

时间:2019-04-12 17:32:57

标签: sharepoint-online powerapps powerapps-canvas

我有2个带有“人员字段”的SharePoint列表。我设计了一个PowerApps表单(添加到第二个列表),并希望将人员字段默认为第一个列表“ Main UserinfoList”中的PTOMGR1的值。

我可以使用Lookup作为Gallery的数据源,用与当前用户匹配的记录成功填充Gallery

但是将表单上的DataCard值默认设置为相同的公式(即

)无效

LookUp('MAIN UserInfoList',Title = cThisAccount.Text,PTOMGR1)

即使这不起作用:

{ 
   '@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
    Claims:LookUp('MAIN UserInfoList', Title = cThisAccount.Text,PTOMGR1).Claims,   
    Department:"", 
    DisplayName:LookUp('MAIN UserInfoList', Title = cThisAccount.Text,PTOMGR1).DisplayName,
    Email:LookUp('MAIN UserInfoList', Title = cThisAccount.Text,PTOMGR1).Email, 
    JobTitle:"", 
    Picture:""
  }

我尝试从绑定的图库中获取人员字段值:

glryPTOLook.Selected.PTOMGR1

我尝试从全局变量中获取人员字段值:

glbPTORecord.PTOMGR1

关于如何进行的任何建议?

0 个答案:

没有答案