I'm having trouble with multi selection people picker combo box displaying the default selected items. I am not able to figure out how to set it up.
With Sharepoint list as data source, email IDs are stored as plain text in a text column with multiple email IDs semi colon separated.
What is the approach i should take, to populate the Default Selected Items property of the Combo box such that the emails IDs from the SPL text columns preselected in the combo box.
I tried the below, missing out something. Any help is appreciated.
DefaultSelectedItems =
{
Claims: Concatenate("i:0#.f|membership|", varDataCardValue94 // varDataCardValue94 :- Person email Id from SPL Text column
),
Department: "",
DisplayName: ShowColumns(Office365Users.SearchUserV2({searchTerm:varDataCardValue94}).value, "DisplayName"),
Email: varDataCardValue94, // Person email
JobTitle: "",
Picture: ""
}