Hi @Sifu ,
Could you please share a bit more about the formula you typed within the Items property of the ComboBox?
Could you select multiple options within the ComboBox?
Further, could you please share more details about the result the 'combo'.Selected.Result formula returned? Is it a email address or a Display name of the user?
According to the needs that you mentioned, I think you want to save the multiple selected users within the ComboBox back to the Person type column in your SP List, is it right?
1) If the 'combo'.Selected.Result formula result is the email address of a selected user, please modify your formula as below (set the Update property of the Person field data card in your Edit form😞
ForAll(
'combo'.SelectedItems,
{
Claims: "i:0#.f|membership|" & Lower(Result),
DisplayName: LookUp(Office365Users.SearchUserV2().value, Mail = Result).DisplayName,
Email: Result,
Department: "",
JobTitle: "",
Picture: ""
}
)
Note: You need to add Office 365 Users connector as data source in your app firstly
2) If the 'combo'.Selected.Result formula result is the DisplayName of a selected user, please modify your formula as below (set the Update property of the Person field data card in your Edit form😞
ForAll(
'combo'.SelectedItems,
{
Claims: "i:0#.f|membership|" & Lower(LookUp(Office365Users.SearchUserV2().value, DisplayName = Result).Mail),
DisplayName: Result,
Email: LookUp(Office365Users.SearchUserV2().value, DisplayName = Result).Mail,
Department: "",
JobTitle: "",
Picture: ""
}
)
Please consider take a try with above solution, then check if the issue is solved.
Best regards,