I have a multiselect combobox in powerapps which is the equivalent person or group field in SharePoint. Allow multiple selections has been enabled for this column named "Members" in SharePoint and powerapps as well.
Items property of the combobox
Filter( Office365Users.SearchUser({searchTerm: DataCardValue17.SearchText,top:500}),
Department = "Banking & Finance"
)
Default property of the combobox = Blank
Default Selected Items of the combobox = Parent.Default
Update property of the datacard
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(DataCardValue17.Selected.Mail),
Department: DataCardValue17.Selected.Department,
DisplayName: DataCardValue17.Selected.DisplayName,
Email: DataCardValue17.Selected.Mail,
JobTitle: DataCardValue17.Selected.JobTitle
}
I have selected multiple values in combo box in powerapps new form and submitted the form. However in SharePoint i can only see single value.
Any idea where i am going wrong?