Hello,
I am facing an issue with Combobox, there are some names in a text columns and I defined Combox as people picker and showing those names by connecting office 365 profiles and the aim is to update the names column with the updated names from combobox along with the default selected names already in ComboBox. when I use the formulae Concat(combobox.selectedItems, DisplayName&";") It only gives the newly added names in the combox box in result but not the default selected names already in the combobox from column!
Items Property: Office365Users.SearchUser({searchTerm:(Self.SearchText)})
Default selected items property:
ForAll(
Split(
ColumnName,
";"
) As aDisplayName,
First(Office365Users.SearchUser({searchTerm: aDisplayName.Value})).DisplayName
)
Concat(Combobox.selectedItems, DisplayName&";") shows only newly selected names in the result but not the default selected names.
Can anyone please help?
Thanks in Advance