Hello,
I am building Powerapps form based on Dataverse. I have used text column and the used combobox for people picker.
items property: ShowColumns(Office365Users.SearchUser({top:999, searchTerm:Self.SearchText}),"Mail", "DisplayName")
defaultselected items: {Mail: ThisItem.Team, DisplayName: ThisItem.Team}
Update property : Concat(ComboBox1.SelectedItems,Mail,",")
This works fine but now when someone saves and later comeback to this field they find all the names concatenated. Inturn if they want to remove any name from this they are compelled to remove all the name and readd once again.
How we can solve this issue?