I have built an app that has the Office365 Users connections. I have created a combobox to pull in the data. I am not using the SharePoint people connector. Text column in the SharePoint list. The end user can select one or multiple people from the people picker and the display name is being written to the SharePoint list with a ";' delimiter.
Items= Office365Users.SearchUser({searchTerm: Combobox.SearchText})
DefaultSelectedItems= [Parent.Default]
Allow Multiple Selections is set to true.
This works fine. The issue comes when I want to edit the items. I somehow need to split the text by delimiter and then connect it to the people search but I am not sure how to accomplish that. Currently, it will just combine whatever is currently listed as one item which can't find a person so if I add someone else, the previous items get deleted. I have not been able to find a solution.