Hi all,
I am building an issue tracker where the issue can be assigned to multiple persons and seem to be going around in circles a bit with this one. I've tried multiple things from forums/YT videos but nothing seems to be working for me.
The assigned people are added to a collection, I am then trying to patch the collection back to the relevant SP field. The SP column is set up as a multi person column. How do I change the below to patch all the people in the collection instead of just a single selected person?
What I have so far:
Patch(
TrackerSPList,
LookUp(TrackerSPList, SerialNo = varRecordTriage.SerialNo),
{
AssignedToPerson: Table(
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Department: varSelectedPerson.Department,
Claims: "i:0#.f|membership|" & varSelectedPerson.Mail,
DisplayName: varSelectedPerson.DisplayName,
Email: varSelectedPerson.Mail,
JobTitle: varSelectedPerson.JobTitle,
Picture: varSelectedPerson.Mail
})
}
)


Report
All responses (
Answers (