Hi @Anonymous ,
Try using Patch with the below approach to set the multi-select people field in SPList:
Patch(SampleList,Defaults(SampleList),{Title:"Sample",
PersonEmail:ForAll(
DataCardValue181.SelectedItems,
{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & Email,
Department:"",
DisplayName:DisplayName,
Email:Email,
JobTitle:"",
Picture:""
}
)});
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.