Hi @Brahmaji ,
Could you please share a bit more about the Person/Groups column in your SP list? Do you enable "Allow Multiple selections" option for it?
How do you save the Multiple Person column value into your SP list? Using SubmitForm function or Patch function?
Further, could you please share a screenshot about your app's configuration?
I assume that you use SubmitForm function to submit your form data, based on the formula you provided, I think there is something wrong with it.
I have made a test on my side, please take a try with the following workaround:
Within your Edit form, set the Update property of the Person column Data card which contains the Combo Box control to following:
DataCardValue12.SelectedItems
On your side, you should type:
YourComboBox.SelectedItems
Or
ForAll(
YourPersonComboBox.SelectedItems,
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(Email),
Department: "",
DisplayName: DisplayName,
Email: Email,
JobTitle: "",
Picture: ""
}
)
Set the DefaultSelectedItems property of the Combo Box within the Person column Data card to following:
Parent.Default
If you use Patch function to submit your Person Combo Box value (multiple values) into your SP list, I have made a test on my side, please take a try with the following workaround:
Set the OnSelect property of the "Submit" button to following:
Patch(
'YourSPList',
Defaults('YourSPList'),
{
Title: DataCardValue1.Text
YourPersonColumn: ForAll(
YourPersonComboBox.SelectedItems,
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(Email),
Department: "",
DisplayName: DisplayName,
Email: Email,
JobTitle: "",
Picture: ""
}
),
...
}
)
In addition, on your side, you could also consider take a try to generated an app based on your SP list, then you could use the generated app to do some add, edit and delete operations to your SP list.
More details about generating an app based on a SP list, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/app-from-sharepoint
Best regards,