Hi@RajSaha_,
Based on the issue that you mentioned, do you want to patch user information from the Office365Users to SP list?
Could you please tell me
- how you set the Items property of these Combo Box?
- what is the column type of the Staff and Senior, are they all Person column?
I want to tell you that if you have connected Office365Users to your App and want to patch it back to the Person/Group column within your SP list, you should obey the following format:
{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|qi@wiXXXX.onmicrosoft.com",
Department:"",
DisplayName:"Qi Qiao",
Email:"qi@wiXXXX.onmicrosoft.com",
JobTitle:"",
Picture:""
}
In my scenario, I have a Person column named "Staff" and the Items property of the Combo Box is set to:
Choices([@'Work Requests'].Staff)
In your scenario, I assume that you have the Person/Group column within your SP list, and please modify the formula as below:
Patch(
'Work Requests',
Defaults('Work Requests'),
{
Staff: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
DisplayName: DataCardValue6.Selected.DisplayName,
Claims: DataCardValue6.Selected.Claims,
Department: "",
Email: DataCardValue6.Selected.Email,
JobTitle: DataCardValue6.Selected.JobTitle,
Picture: ""
}
}
)
Please check to see if this could help you.
Regards,
Qi