Hello All,
I am currently using a PowerApp edit form connected to a SharePoint list. I have a Person Field "Addl_Team" on SP that allows multiple entries.
I can get my multiselect-enabled combobox in my form to create an entry with multiple people, but if I go back into the app and I decide that I need to add another person to these selections, it overwrites my existing multi-selections with just that one new person I picked.
This is the code I have attached to my Update function of my DataCard:
ForAll(DataCardValue12.SelectedItems,
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: Mail,
DisplayName: DisplayName,
Email: Mail
})
I have a feeling it may be my DefaultSelectedItems on the DataCardValue in the combobox playing a role in this, but I want it so users can see who they already picked and add or subtract from there:
ThisItem.Addl_Team.DisplayName
Any ideas what might be wrong? Any other ways to populate the pre-existing selected people without this happening?
Please let me know if you need any more info.
Thanks so much and so very appreciated!
Lindsey